File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 22
22
jobs :
23
23
dependency-review :
24
24
name : Review new dependencies for known vulnerabilities
25
- runs-on : " ubuntu-20 .04"
25
+ runs-on : " ubuntu-22 .04"
26
26
if : ${{ github.event_name == 'pull_request' }}
27
27
steps :
28
28
- name : ' Checkout Repository'
32
32
33
33
lint-rust :
34
34
name : Lint Rust
35
- runs-on : " ubuntu-20 .04"
35
+ runs-on : " ubuntu-22 .04"
36
36
permissions :
37
37
# # Allow this job to potentially cancel the running workflow (on failure)
38
38
actions : write
55
55
# # This is separated out to remove full integration tests dependencies on windows/mac builds
56
56
build-rust-ubuntu :
57
57
name : Build Spin Ubuntu
58
- runs-on : ubuntu-20 .04
58
+ runs-on : ubuntu-22 .04
59
59
steps :
60
60
- uses : actions/checkout@v3
61
61
79
79
80
80
build-spin-static :
81
81
name : Build Spin static
82
- runs-on : ubuntu-20 .04
82
+ runs-on : ubuntu-22 .04
83
83
strategy :
84
84
matrix :
85
85
config :
@@ -225,7 +225,7 @@ jobs:
225
225
matrix :
226
226
config :
227
227
- {
228
- os : " ubuntu-20 .04" ,
228
+ os : " ubuntu-22 .04" ,
229
229
arch : " amd64" ,
230
230
extension : " " ,
231
231
# Ubuntu 22.04 no longer ships libssl1.1, so we statically
@@ -235,7 +235,7 @@ jobs:
235
235
targetDir : " target/release" ,
236
236
}
237
237
- {
238
- os : " ubuntu-20 .04" ,
238
+ os : " ubuntu-22 .04" ,
239
239
arch : " aarch64" ,
240
240
extension : " " ,
241
241
extraArgs : " --features openssl/vendored --target aarch64-unknown-linux-gnu" ,
Original file line number Diff line number Diff line change 26
26
matrix :
27
27
config :
28
28
- {
29
- os : " ubuntu-20 .04" ,
29
+ os : " ubuntu-22 .04" ,
30
30
arch : " amd64" ,
31
31
extension : " " ,
32
32
# Ubuntu 22.04 no longer ships libssl1.1, so we statically
36
36
targetDir : " target/release" ,
37
37
}
38
38
- {
39
- os : " ubuntu-20 .04" ,
39
+ os : " ubuntu-22 .04" ,
40
40
arch : " aarch64" ,
41
41
extension : " " ,
42
42
extraArgs : " --features openssl/vendored --target aarch64-unknown-linux-gnu" ,
@@ -265,7 +265,7 @@ jobs:
265
265
# # statically linked spin binaries
266
266
build-spin-static :
267
267
name : Build Spin static
268
- runs-on : ubuntu-20 .04
268
+ runs-on : ubuntu-22 .04
269
269
permissions :
270
270
# cosign uses the GitHub OIDC token
271
271
id-token : write
@@ -363,7 +363,7 @@ jobs:
363
363
client-payload : ' {"version": "${{ github.ref_name }}"}'
364
364
365
365
docker :
366
- runs-on : " ubuntu-20 .04"
366
+ runs-on : " ubuntu-22 .04"
367
367
needs : [build-and-sign, build-spin-static]
368
368
# Only build/push Docker images if this is a v* tag or if this is main/canary
369
369
# i.e. skip for v* release branches
You can’t perform that action at this time.
0 commit comments