Skip to content

Commit

Permalink
Bump versions of other GitHub Actions
Browse files Browse the repository at this point in the history
This results in a more recent version of `node` being used by GitHub
Actions.
  • Loading branch information
tobi18991 committed Mar 25, 2024
1 parent 9cee70a commit 0ffe382
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
steps:
- name: Check out the repository
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
uses: actions/checkout@v4

- name: Use Node.js 16.x
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c
uses: actions/setup-node@v4
with:
node-version: 16.x
cache: 'npm'
Expand All @@ -50,7 +50,7 @@ jobs:
run: npm run test

- name: Archive Playwright test results
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-test-results
Expand All @@ -61,7 +61,7 @@ jobs:
run: npm run stop

- name: Archive compiled plugin
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce
uses: actions/upload-artifact@v4
with:
name: plugin
path: dist/attackgraphs.js

0 comments on commit 0ffe382

Please sign in to comment.