File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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') }}
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
You can’t perform that action at this time.
0 commit comments