Skip to content

Commit

Permalink
ci: update github actions to v3
Browse files Browse the repository at this point in the history
Update checkout and upload-artifact action to v3 to mute nodejs
deprecation warning.

Signed-off-by: Christian Marangi <[email protected]>
(cherry picked from commit 52570d4)
  • Loading branch information
Ansuel authored and PolynomialDivision committed Feb 22, 2023
1 parent 3f74d8a commit 5d87b95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/formal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/multi-arch-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
runtime_test: true

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down Expand Up @@ -92,13 +92,13 @@ jobs:
run: cp bin/packages/${{ matrix.arch }}/packages_ci/*.ipk . || true

- name: Store packages
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.arch}}-packages
path: "*.ipk"

- name: Store logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.arch}}-logs
path: logs/
Expand Down

0 comments on commit 5d87b95

Please sign in to comment.