diff --git a/.github/workflows/delegated-module-actions.yml b/.github/workflows/delegated-module-actions.yml index e219a66..c3d993d 100644 --- a/.github/workflows/delegated-module-actions.yml +++ b/.github/workflows/delegated-module-actions.yml @@ -46,7 +46,7 @@ jobs: with: fetch-depth: 0 - name: Install PNPM - uses: pnpm/action-setup@v2.2.2 + uses: pnpm/action-setup@v4 with: version: 8 - name: Setup Node.js diff --git a/.github/workflows/library-changesets-release.yml b/.github/workflows/library-changesets-release.yml index 0194e3d..5202626 100644 --- a/.github/workflows/library-changesets-release.yml +++ b/.github/workflows/library-changesets-release.yml @@ -18,14 +18,14 @@ jobs: with: fetch-depth: 0 - name: Install PNPM - uses: pnpm/action-setup@v2.2.2 + uses: pnpm/action-setup@v4 with: version: 8 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: 18 - cache: "pnpm" + cache: 'pnpm' - name: Install dependencies run: pnpm install - name: Create Release Pull Request or Publish to npm @@ -33,8 +33,8 @@ jobs: uses: changesets/action@v1 with: version: pnpm run version - title: "ci(root): release versions" - commit: "ci(root): release versions" + title: 'ci(root): release versions' + commit: 'ci(root): release versions' publish: pnpm run release env: GITHUB_TOKEN: ${{ secrets.gh_token }} diff --git a/.github/workflows/library-lint-build-test.yml b/.github/workflows/library-lint-build-test.yml index ca9d424..f094933 100644 --- a/.github/workflows/library-lint-build-test.yml +++ b/.github/workflows/library-lint-build-test.yml @@ -10,12 +10,12 @@ on: inputs: node-version: type: string - default: "18" + default: '18' jobs: build_packages: timeout-minutes: 10 name: Build npm package - runs-on: "ubuntu-latest" + runs-on: 'ubuntu-latest' env: TURBO_TOKEN: ${{ secrets.turbo_token }} TURBO_TEAM: ${{ secrets.turbo_team }} @@ -28,7 +28,7 @@ jobs: fetch-depth: 2 - name: Install PNPM - uses: pnpm/action-setup@v2.2.2 + uses: pnpm/action-setup@v4 with: version: 8 @@ -36,7 +36,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ inputs.node-version }} - cache: "pnpm" + cache: 'pnpm' - name: Install dependencies run: pnpm install @@ -46,7 +46,7 @@ jobs: test: timeout-minutes: 10 name: Lint and Test - runs-on: "ubuntu-latest" + runs-on: 'ubuntu-latest' env: TURBO_TOKEN: ${{ secrets.turbo_token }} TURBO_TEAM: ${{ secrets.turbo_team }} @@ -59,7 +59,7 @@ jobs: fetch-depth: 2 - name: Install PNPM - uses: pnpm/action-setup@v2.2.2 + uses: pnpm/action-setup@v4 with: version: 8 @@ -67,7 +67,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ inputs.node-version }} - cache: "pnpm" + cache: 'pnpm' - name: Install dependencies run: pnpm install @@ -84,7 +84,7 @@ jobs: uses: ataylorme/eslint-annotate-action@1.2.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - report-json: "./eslint-reports/eslint_report.json" + report-json: './eslint-reports/eslint_report.json' continue-on-error: true - name: Upload ESLint report diff --git a/.github/workflows/library-update.yml b/.github/workflows/library-update.yml index 19a52f0..bd57b54 100644 --- a/.github/workflows/library-update.yml +++ b/.github/workflows/library-update.yml @@ -30,7 +30,7 @@ jobs: uses: actions/checkout@v4 - name: Add PNPM - uses: pnpm/action-setup@v2.2.2 + uses: pnpm/action-setup@v4 with: version: 8 @@ -38,7 +38,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: 18 - cache: "pnpm" + cache: 'pnpm' - name: Install packages run: pnpm install @@ -68,5 +68,5 @@ jobs: commit-message: ${{ inputs.title }} title: ${{ inputs.title }} branch: ${{ inputs.branch }} - base: "main" + base: 'main' delete-branch: true