File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 13
13
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
14
14
jobs :
15
15
# This workflow contains a single job called "build"
16
- build-on-ubuntu-2004 :
16
+ build-on-ubuntu-2204 :
17
17
# The type of runner that the job will run on
18
- runs-on : ubuntu-20 .04
18
+ runs-on : ubuntu-22 .04
19
19
20
20
# Steps represent a sequence of tasks that will be executed as part of the job
21
21
steps :
33
33
submodules : true
34
34
35
35
- name : Cache Rust toolchain
36
- uses : actions/cache@v2
36
+ uses : actions/cache@v4
37
37
with :
38
38
path : |
39
39
~/.rustup/toolchains
42
42
key : ${{ runner.os }}-rust-toolchain-${{ hashFiles('rust-toolchain') }}
43
43
44
44
- name : Cache Rust artifacts
45
- uses : actions/cache@v2
45
+ uses : actions/cache@v4
46
46
with :
47
47
path : |
48
48
~/.cargo/registry
52
52
key : ${{ runner.os }}-${{ hashFiles('**/Cargo.lock', '**/c2rust-ast-exporter/**/CMakeLists.txt', '**/examples/**/CMakeLists.txt') }}
53
53
54
54
- name : Cache Python - pip
55
- uses : actions/cache@v2
55
+ uses : actions/cache@v4
56
56
with :
57
57
path : ~/.cache/pip
58
58
key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
You can’t perform that action at this time.
0 commit comments