Skip to content

Commit

Permalink
Update workflow action versions (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
askoufis committed Feb 23, 2024
1 parent c99cc30 commit fe3268e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/preview-site.yml
Expand Up @@ -13,13 +13,13 @@ jobs:
CI: true
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up pnpm
uses: pnpm/action-setup@v2.2.4
uses: pnpm/action-setup@v3

- 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/release.yml
Expand Up @@ -13,17 +13,17 @@ jobs:
CI: true
steps:
- name: Checkout Repo
uses: actions/checkout@v3
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@v3

- 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
Expand Up @@ -10,17 +10,17 @@ jobs:
CI: true
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history for semantic-release
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Set up pnpm
uses: pnpm/action-setup@v2.2.4
uses: pnpm/action-setup@v3

- 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
10 changes: 5 additions & 5 deletions .github/workflows/validate.yml
Expand Up @@ -13,13 +13,13 @@ jobs:
CI: true
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up pnpm
uses: pnpm/action-setup@v2.2.4
uses: pnpm/action-setup@v3

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'

Expand All @@ -30,7 +30,7 @@ jobs:
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Cache node modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Cache Cypress binary
id: cypress-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/Cypress
key: cypress-${{ runner.os }}-cypress-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand Down

0 comments on commit fe3268e

Please sign in to comment.