Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lkl: Update GitHub Actions actions #547

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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
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
Loading