diff --git a/.github/workflows/npm-audit.yml b/.github/workflows/npm-audit.yml index 7219cdaa..f312ba02 100644 --- a/.github/workflows/npm-audit.yml +++ b/.github/workflows/npm-audit.yml @@ -55,7 +55,7 @@ jobs: - name: 🧩 Install Dependencies id: install-dependencies - run: pnpm install + run: pnpm install --frozen-lockfile - name: 🧩 Run Security Audit id: run-security-audit diff --git a/.github/workflows/pr-builder.yml b/.github/workflows/pr-builder.yml index fb7e7771..240fe4c0 100644 --- a/.github/workflows/pr-builder.yml +++ b/.github/workflows/pr-builder.yml @@ -6,8 +6,8 @@ on: pull_request: branches: [main] paths-ignore: - - "**.md" - - "LICENSE" + - '**.md' + - 'LICENSE' workflow_dispatch: env: @@ -39,7 +39,7 @@ jobs: id: set-shas uses: nrwl/nx-set-shas@v3 with: - main-branch-name: "main" + main-branch-name: 'main' - name: 🥡 Setup pnpm id: setup-pnpm @@ -64,7 +64,7 @@ jobs: - name: 🧩 Install Dependencies id: install-dependencies - run: pnpm install + run: pnpm install --frozen-lockfile - name: 🦄 Lint All Files id: lint-with-eslint @@ -95,7 +95,7 @@ jobs: id: set-shas uses: nrwl/nx-set-shas@v3 with: - main-branch-name: "main" + main-branch-name: 'main' - name: 🥡 Setup pnpm uses: pnpm/action-setup@v2.1.0 @@ -119,7 +119,7 @@ jobs: - name: 🧩 Install Dependencies id: install-dependencies - run: pnpm install + run: pnpm install --frozen-lockfile - name: 🏗️ Build id: build @@ -172,7 +172,7 @@ jobs: - name: 🧩 Install Dependencies id: install-dependencies - run: pnpm install + run: pnpm install --frozen-lockfile - name: 🏗️ Build id: build @@ -223,7 +223,7 @@ jobs: - name: 🧩 Install Dependencies id: install-dependencies - run: pnpm install + run: pnpm install --frozen-lockfile - name: 🏗️ Build id: build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0075f479..0b6f916f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -51,7 +51,7 @@ jobs: - name: 🧩 Install Dependencies id: install-dependencies - run: pnpm install + run: pnpm install --frozen-lockfile - name: 🏗️ Build id: build @@ -64,6 +64,6 @@ jobs: title: '[Release] [GitHub Action] Update package versions' publish: pnpm publish:packages version: pnpm version:packages - commit: "[WSO2 Release] [GitHub Action] [Release] [skip ci] update package versions" + commit: '[WSO2 Release] [GitHub Action] [Release] [skip ci] update package versions' env: GITHUB_TOKEN: ${{ env.GH_TOKEN }}