Skip to content

Commit

Permalink
lkl: Update GitHub Actions actions
Browse files Browse the repository at this point in the history
The actions/upload-artifact v2 is deprecated, and it's no longer
available. [1]

[1] https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/

Signed-off-by: Akira Moroo <[email protected]>
  • Loading branch information
retrage committed Sep 22, 2024
1 parent 699f87c commit 920da51
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Checkout
if: runner.os == 'Linux'
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install pip dependencies
run: pip install yamlish junit-xml
- name: Install openvpn
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
git -c protocol.version=2 fetch --no-tags --prune --progress --depth=10 origin +${GITHUB_SHA}:refs/remotes/origin/${BRANCH}
git checkout --progress --force -B $BRANCH refs/remotes/origin/$BRANCH
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ${{ env.CCACHE_DIR }}
key: ${{ runner.os }}-ccache-build-${{ github.sha }}
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
- name: Tests
run: mkdir /tmp/junit && make -C tools/lkl run-tests tests="--junit-dir /tmp/junit"
- name: Save test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-results-${{ matrix.displayTargetName }}
Expand All @@ -167,7 +167,7 @@ jobs:
- name: Checkout
with:
fetch-depth: 0
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install pip dependencies
run: sudo pip install ply GitPython
- name: Check coding style
Expand Down

0 comments on commit 920da51

Please sign in to comment.