Skip to content

Commit

Permalink
Merge pull request #2 from slidoapp/actions_node20
Browse files Browse the repository at this point in the history
Update `check-dist.yml` workflow to use NodeJS 20 actions
  • Loading branch information
jozefizso committed May 20, 2024
2 parents ea29175 + 9b3b811 commit 71b5d10
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set Node.js 12.x
uses: actions/setup-node@v3.6.0
- name: Set Node.js
uses: actions/setup-node@v4
with:
node-version: 12.x
node-version-file: '.nvmrc'

- name: Install dependencies
run: npm ci
Expand All @@ -44,7 +44,7 @@ jobs:
id: diff

# If index.js was different than expected, upload the expected version as an artifact
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
Expand Down

0 comments on commit 71b5d10

Please sign in to comment.