diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c16b3f2..c1f6016 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,17 +14,17 @@ jobs: CI: true steps: - name: Check out repo - uses: actions/checkout@main + uses: actions/checkout@4 with: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 token: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }} - name: Set up pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: package.json cache: pnpm diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index e54c0f5..61245a3 100644 --- a/.github/workflows/snapshot.yml +++ b/.github/workflows/snapshot.yml @@ -10,17 +10,17 @@ jobs: CI: true steps: - name: Check out repo - uses: actions/checkout@main + uses: actions/checkout@v4 with: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 token: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }} - name: Set up pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: package.json cache: pnpm diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e62ae87..b1dc676 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,13 +12,13 @@ jobs: CI: true steps: - name: Check out repo - uses: actions/checkout@main + uses: actions/checkout@v4 - name: Set up pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: package.json cache: pnpm