Skip to content

Commit

Permalink
Upgrade GitHub Actions checkout and setup-node
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored and jaylinski committed Dec 13, 2023
1 parent 1fc4ef0 commit 25c696b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: 'ubuntu-latest'
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '18'

Expand All @@ -37,12 +37,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: true

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

Expand All @@ -63,12 +63,12 @@ jobs:
runs-on: 'ubuntu-22.04'
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: true

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '18'

Expand Down

0 comments on commit 25c696b

Please sign in to comment.