Skip to content

Commit

Permalink
Update actions/checkout and actions/setup-node from v2 to v4
Browse files Browse the repository at this point in the history
This resolves some warnings related to the node version these actions
are using.
  • Loading branch information
lencioni committed Jul 26, 2024
1 parent aacb666 commit f462b79
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
node16:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Test using Node.js 16.x
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 16.x
- run: yarn install --frozen-lockfile --ignore-engines
Expand All @@ -22,9 +22,9 @@ jobs:
node18:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Test using Node.js 18.x
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 18.x
- run: yarn install --frozen-lockfile --ignore-engines
Expand All @@ -33,9 +33,9 @@ jobs:
node20:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Test using Node.js 20.x
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 20.x
- run: yarn install --frozen-lockfile --ignore-engines
Expand All @@ -44,9 +44,9 @@ jobs:
node22:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Test using Node.js 22.x
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 22.x
- run: yarn install --frozen-lockfile --ignore-engines
Expand Down

0 comments on commit f462b79

Please sign in to comment.