Skip to content

Commit 3b9f064

Browse files
author
Developer
committed
Fix CI: Update all actions to v4 (checkout, cache, upload-artifact)
1 parent 5d9a9be commit 3b9f064

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/openvx-conformance.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Checkout rustVX
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
with:
3333
fetch-depth: 0
3434

@@ -52,23 +52,23 @@ jobs:
5252
cargo --version
5353
5454
- name: Cache Cargo registry
55-
uses: actions/cache@v3
55+
uses: actions/cache@v4
5656
with:
5757
path: ~/.cargo/registry
5858
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
5959
restore-keys: |
6060
${{ runner.os }}-cargo-registry-
6161
6262
- name: Cache Cargo index
63-
uses: actions/cache@v3
63+
uses: actions/cache@v4
6464
with:
6565
path: ~/.cargo/git
6666
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
6767
restore-keys: |
6868
${{ runner.os }}-cargo-index-
6969
7070
- name: Cache Cargo build
71-
uses: actions/cache@v3
71+
uses: actions/cache@v4
7272
with:
7373
path: target
7474
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -77,7 +77,7 @@ jobs:
7777
7878
- name: Cache OpenVX CTS build
7979
id: cache-cts
80-
uses: actions/cache@v3
80+
uses: actions/cache@v4
8181
with:
8282
path: OpenVX-cts/build
8383
key: ${{ runner.os }}-cts-${{ hashFiles('OpenVX-cts/CMakeLists.txt') }}
@@ -193,7 +193,7 @@ jobs:
193193
echo "fail_count=$FAIL_COUNT" >> $GITHUB_OUTPUT
194194
195195
- name: Upload test results
196-
uses: actions/upload-artifact@v3
196+
uses: actions/upload-artifact@v4
197197
if: always()
198198
with:
199199
name: conformance-test-results

0 commit comments

Comments
 (0)