Skip to content

Commit

Permalink
ci: Update action versions (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
askoufis authored Nov 11, 2024
1 parent fc4154c commit c45e0a6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c45e0a6

Please sign in to comment.