75
75
76
76
- name : Checkout
77
77
if : runner.os == 'Linux'
78
- uses : actions/checkout@v2
78
+ uses : actions/checkout@v4
79
79
- name : Install pip dependencies
80
80
run : pip install yamlish junit-xml
81
81
- name : Install openvpn
@@ -103,7 +103,7 @@ jobs:
103
103
git -c protocol.version=2 fetch --no-tags --prune --progress --depth=10 origin +${GITHUB_SHA}:refs/remotes/origin/${BRANCH}
104
104
git checkout --progress --force -B $BRANCH refs/remotes/origin/$BRANCH
105
105
106
- - uses : actions/cache@v2
106
+ - uses : actions/cache@v4
107
107
with :
108
108
path : ${{ env.CCACHE_DIR }}
109
109
key : ${{ runner.os }}-ccache-build-${{ github.sha }}
@@ -154,7 +154,7 @@ jobs:
154
154
- name : Tests
155
155
run : mkdir /tmp/junit && make -C tools/lkl run-tests tests="--junit-dir /tmp/junit"
156
156
- name : Save test results
157
- uses : actions/upload-artifact@v2
157
+ uses : actions/upload-artifact@v4
158
158
if : success() || failure()
159
159
with :
160
160
name : test-results-${{ matrix.displayTargetName }}
@@ -167,7 +167,7 @@ jobs:
167
167
- name : Checkout
168
168
with :
169
169
fetch-depth : 0
170
- uses : actions/checkout@v2
170
+ uses : actions/checkout@v4
171
171
- name : Install pip dependencies
172
172
run : sudo pip install ply GitPython
173
173
- name : Check coding style
0 commit comments