Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
fix node.js <20 deprecation
  • Loading branch information
mosfet80 authored Nov 18, 2024
1 parent 84f3aed commit 4bbb80f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
npm install
npm run all
Expand All @@ -21,7 +21,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Make test pre-release
uses: ./
with:
Expand All @@ -34,7 +34,7 @@ jobs:
make_latest: true
body: "rofl lol test%0Aianal %25 fubar"
- name: Check that the uploaded asset is readable
uses: actions/github-script@v2
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
make_latest: true
body: "new body"
- name: Check that the release is promoted
uses: actions/github-script@v2
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
retries: 15
Expand All @@ -84,7 +84,7 @@ jobs:
assert.deepStrictEqual(expected, actual.data)
- name: Clean up
if: ${{ always() }}
uses: actions/github-script@v2
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down

0 comments on commit 4bbb80f

Please sign in to comment.