|
17 | 17 | rustfmt:
|
18 | 18 | runs-on: ubuntu-latest
|
19 | 19 | steps:
|
20 |
| - - uses: actions/checkout@v2 |
| 20 | + - uses: actions/checkout@v3 |
21 | 21 | - uses: actions-rs/toolchain@v1
|
22 | 22 | with:
|
23 | 23 | profile: minimal
|
|
31 | 31 | # operating system dependent configurations (except case sensitivity setting)
|
32 | 32 | runs-on: ubuntu-latest
|
33 | 33 | steps:
|
34 |
| - - uses: actions/checkout@v2 |
| 34 | + - uses: actions/checkout@v3 |
35 | 35 | - uses: actions-rs/toolchain@v1
|
36 | 36 | with:
|
37 | 37 | profile: minimal
|
|
59 | 59 | # alternatively matrix could be shared and specified via .json
|
60 | 60 | # see https://github.community/t/how-to-share-matrix-between-jobs/128595/8
|
61 | 61 | # ---
|
62 |
| - - { build: 'linux-x86_64-pinned', os: 'ubuntu-18.04', target: 'x86_64-unknown-linux-gnu', cross: false, rust: 1.68.2 } |
| 62 | + - { build: 'linux-x86_64-pinned', os: 'ubuntu-22.04', target: 'x86_64-unknown-linux-gnu', cross: false, rust: 1.68.2 } |
63 | 63 | - { build: 'windows-x86_64-pinned', os: 'windows-2019', target: 'x86_64-pc-windows-msvc', cross: false, rust: 1.68.2 }
|
64 | 64 | - { build: 'macos-x86_64-pinned', os: 'macos-latest', target: 'x86_64-apple-darwin', cross: false, rust: 1.68.2 }
|
65 | 65 | - { build: 'linux-x86_64', os: 'ubuntu-latest', target: 'x86_64-unknown-linux-gnu', cross: false, rust: stable }
|
|
75 | 75 | # - { build: 'windows-i686-mingw', os: 'windows-latest', target: 'i686-pc-windows-gnu', cross: false, rust: stable }
|
76 | 76 | steps:
|
77 | 77 | - name: Checkout repository
|
78 |
| - uses: actions/checkout@v2 |
| 78 | + uses: actions/checkout@v3 |
79 | 79 | # Rustup update can fail on windows since it tries to replace its binary. This is not really
|
80 | 80 | # needed anyhow. https://github.com/rust-lang/rustup/issues/3029
|
81 | 81 | - name: Disable rustup self-update
|
@@ -107,17 +107,17 @@ jobs:
|
107 | 107 | matrix:
|
108 | 108 | os:
|
109 | 109 | # testing on the real VMs only, not via CROSS
|
110 |
| - - ubuntu-18.04 |
| 110 | + - ubuntu-22.04 |
111 | 111 | - macos-latest
|
112 | 112 | - windows-latest
|
113 | 113 | toolchain:
|
114 | 114 | - stable
|
115 | 115 | steps:
|
116 | 116 | - name: Checkout repository
|
117 |
| - uses: actions/checkout@v2 |
| 117 | + uses: actions/checkout@v3 |
118 | 118 |
|
119 | 119 | - name: Install packages (ubuntu)
|
120 |
| - if: matrix.os == 'ubuntu-18.04' |
| 120 | + if: matrix.os == 'ubuntu-22.04' |
121 | 121 | run: |
|
122 | 122 | .github/setup/load_artifacts_ubuntu.sh
|
123 | 123 |
|
|
0 commit comments