Skip to content

Commit

Permalink
Merge pull request #547 from retrage/2024-09-22-update-gha-actions
Browse files Browse the repository at this point in the history
lkl: Update GitHub Actions actions
  • Loading branch information
thehajime authored Dec 25, 2024
2 parents 63bed8b + 920da51 commit 269c243
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 269c243

Please sign in to comment.