From c45e0a62ead5658a1311d5f97b077fa9bdb4eb8b Mon Sep 17 00:00:00 2001 From: Adam Skoufis Date: Mon, 11 Nov 2024 16:35:26 +1100 Subject: [PATCH] ci: Update action versions (#157) --- .github/workflows/release.yml | 6 +++--- .github/workflows/snapshot.yml | 6 +++--- .github/workflows/test.yml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) 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