Skip to content

Commit

Permalink
ci: upgrade node actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoenig134 committed Sep 30, 2024
1 parent 9747b26 commit 2799ba5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- uses: browser-actions/setup-chrome@latest
- uses: browser-actions/setup-chrome@v1
- run: bash .ci/build.sh
env:
BUILD_NUMBER: ${{ github.run_number }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: browser-actions/setup-chrome@latest
- uses: browser-actions/setup-chrome@v1
- run: bash .ci/build.sh
env:
BUILD_NUMBER: ${{ github.run_number }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
version_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: sudo apt-get update && sudo apt-get install jq -y
- name: Ensure valid package version
run: |
Expand Down

0 comments on commit 2799ba5

Please sign in to comment.