Skip to content

Commit

Permalink
Bump build actions to v4
Browse files Browse the repository at this point in the history
Bumped the build actions to v4 that uses Node20 by default, to avoid warnings of using outdated Node versions in actions
  • Loading branch information
oporkka authored Mar 18, 2024
1 parent 5dadec9 commit e948e3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
graphql-version: [15, 16, 17.0.0-alpha.3]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -30,7 +30,7 @@ jobs:

# https://github.com/actions/cache/blob/main/examples.md#node---yarn
- name: Cache yarn packages
uses: actions/cache@v2
uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand Down

0 comments on commit e948e3c

Please sign in to comment.