Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[ci] update actions to v4
* See deprecation notice: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
* Let's update all `actions` packages to v4
  • Loading branch information
nan-li committed Feb 25, 2025
commit 2ac7a62342674df88597cb26dd44e88945b756fc
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: '[Setup] Node'
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
- name: '[Setup] Dependencies'
Expand All @@ -20,7 +20,7 @@ jobs:

- name: Unit tests results
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: unit-tests-results
path: .
Loading