File tree 11 files changed +26
-26
lines changed
11 files changed +26
-26
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ permissions:
19
19
jobs :
20
20
resolve_prs :
21
21
name : Resolve PRs
22
- runs-on : ubuntu-latest
22
+ runs-on : ubuntu-22.04
23
23
# If triggering PR actually is a backport, then original_pr will be set
24
24
outputs :
25
25
backport_pr : ${{ steps.backport.outputs.pr }}
50
50
51
51
fixup_backport :
52
52
name : Fixup the backport PR
53
- runs-on : ubuntu-latest
53
+ runs-on : ubuntu-22.04
54
54
needs : [resolve_prs]
55
55
if : ${{ needs.resolve_prs.outputs.original_pr }}
56
56
Original file line number Diff line number Diff line change 10
10
jobs :
11
11
build_template :
12
12
name : Build and Test
13
- runs-on : ubuntu-latest
13
+ runs-on : ubuntu-22.04
14
14
15
15
steps :
16
16
- name : Checkout
Original file line number Diff line number Diff line change 15
15
jobs :
16
16
cd-circt :
17
17
name : ' Check Version, Create PR'
18
- runs-on : ubuntu-latest
18
+ runs-on : ubuntu-22.04
19
19
steps :
20
20
- name : ' circt/update-circt'
21
21
uses : circt/update-circt@v1.0.0
Original file line number Diff line number Diff line change 21
21
jobs :
22
22
determine-branch :
23
23
name : ' Update Staging Branch and Determine Target Branch'
24
- runs-on : ubuntu-latest
24
+ runs-on : ubuntu-22.04
25
25
steps :
26
26
- name : Update Staging Branch
27
27
uses : circt/update-staging-branch@v1.2.0
44
44
needs : [determine-branch]
45
45
strategy :
46
46
matrix :
47
- system : ["ubuntu-20 .04"]
47
+ system : ["ubuntu-22 .04"]
48
48
jvm : [8]
49
49
scala : ["2.13.12"]
50
50
espresso : ["2.4"]
65
65
check-tests :
66
66
name : " check tests"
67
67
needs : [ci]
68
- runs-on : ubuntu-20 .04
68
+ runs-on : ubuntu-22 .04
69
69
outputs :
70
70
success : ${{ steps.setoutput.outputs.success }}
71
71
steps :
80
80
# See: https://brunoscheufler.com/blog/2022-04-09-the-required-github-status-check-that-wasnt
81
81
all_tests_passed :
82
82
name : " all tests passed"
83
- runs-on : ubuntu-20 .04
83
+ runs-on : ubuntu-22 .04
84
84
if : always() # Always run so that we never skip this check
85
85
needs : check-tests
86
86
# Pass only if check-tests set its output value
Original file line number Diff line number Diff line change 17
17
name : ci
18
18
strategy :
19
19
matrix :
20
- system : ["ubuntu-20 .04"]
20
+ system : ["ubuntu-22 .04"]
21
21
jvm : [8]
22
22
scala : ["2.13.12"]
23
23
espresso : ["2.4"]
34
34
check-tests :
35
35
name : " check tests"
36
36
needs : ci
37
- runs-on : ubuntu-20 .04
37
+ runs-on : ubuntu-22 .04
38
38
outputs :
39
39
success : ${{ steps.setoutput.outputs.success }}
40
40
steps :
49
49
# See: https://brunoscheufler.com/blog/2022-04-09-the-required-github-status-check-that-wasnt
50
50
all_tests_passed :
51
51
name : " all tests passed"
52
- runs-on : ubuntu-20 .04
52
+ runs-on : ubuntu-22 .04
53
53
if : always() # Always run so that we never skip this check
54
54
needs : check-tests
55
55
# Pass only if check-tests set its output value
68
68
# separate from a Scala versions build matrix to avoid duplicate publishing
69
69
publish :
70
70
needs : [all_tests_passed]
71
- runs-on : ubuntu-20 .04
71
+ runs-on : ubuntu-22 .04
72
72
if : github.event_name == 'push'
73
73
74
74
steps :
@@ -101,7 +101,7 @@ jobs:
101
101
102
102
deploy_website :
103
103
name : Deploy Website
104
- runs-on : ubuntu-latest
104
+ runs-on : ubuntu-22.04
105
105
needs : [all_tests_passed]
106
106
# Only Deploy website on pushes to main, may change to a stable branch
107
107
if : (github.event_name == 'push') && (github.ref_name == 'main')
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ permissions:
16
16
jobs :
17
17
determine_version :
18
18
name : Determine Version
19
- runs-on : ubuntu-latest
19
+ runs-on : ubuntu-22.04
20
20
outputs :
21
21
version : ${{ steps.dowork.outputs.version }}
22
22
31
31
32
32
determine_branches :
33
33
name : Determine Branches
34
- runs-on : ubuntu-latest
34
+ runs-on : ubuntu-22.04
35
35
needs : [determine_version]
36
36
outputs :
37
37
branches : ${{ steps.determine-branches.outputs.branches }}
63
63
64
64
open_prs :
65
65
name : Open Pull Requests
66
- runs-on : ubuntu-latest
66
+ runs-on : ubuntu-22.04
67
67
needs : [determine_version, determine_branches]
68
68
strategy :
69
69
matrix :
Original file line number Diff line number Diff line change 18
18
jobs :
19
19
generate_release_notes :
20
20
name : Generate Release Notes
21
- runs-on : ubuntu-latest
21
+ runs-on : ubuntu-22.04
22
22
23
23
steps :
24
24
- name : Checkout
Original file line number Diff line number Diff line change 14
14
jobs :
15
15
check_labels :
16
16
name : Check Labels
17
- runs-on : ubuntu-latest
17
+ runs-on : ubuntu-22.04
18
18
steps :
19
19
- uses : docker://agilepathway/pull-request-label-checker:v1.4.25
20
20
with :
Original file line number Diff line number Diff line change 13
13
publish_template :
14
14
name : Generate Scala CLI Template
15
15
needs : [generate_scala_cli_template]
16
- runs-on : ubuntu-latest
16
+ runs-on : ubuntu-22.04
17
17
18
18
steps :
19
19
- name : Download Generated CLI Template
Original file line number Diff line number Diff line change 5
5
inputs :
6
6
system :
7
7
description : ' The GitHub runner to use'
8
- default : ' ubuntu-20 .04'
8
+ default : ' ubuntu-22 .04'
9
9
required : true
10
10
type : string
11
11
jvm :
84
84
85
85
mill :
86
86
name : compile project with mill
87
- runs-on : ubuntu-20 .04
87
+ runs-on : ubuntu-22 .04
88
88
steps :
89
89
- name : Checkout
90
90
uses : actions/checkout@v3
@@ -124,7 +124,7 @@ jobs:
124
124
125
125
doc :
126
126
name : Formatting
127
- runs-on : ubuntu-20 .04
127
+ runs-on : ubuntu-22 .04
128
128
steps :
129
129
- name : Checkout
130
130
uses : actions/checkout@v3
@@ -141,7 +141,7 @@ jobs:
141
141
142
142
integration :
143
143
name : Integration Tests
144
- runs-on : ubuntu-20 .04
144
+ runs-on : ubuntu-22 .04
145
145
steps :
146
146
- name : Checkout
147
147
uses : actions/checkout@v3
@@ -175,7 +175,7 @@ jobs:
175
175
176
176
std :
177
177
name : Standard Library Tests
178
- runs-on : ubuntu-20 .04
178
+ runs-on : ubuntu-22 .04
179
179
strategy :
180
180
matrix :
181
181
scala : ["2.13.12"]
@@ -199,7 +199,7 @@ jobs:
199
199
200
200
website :
201
201
name : Build Mdoc & Website
202
- runs-on : ubuntu-latest
202
+ runs-on : ubuntu-22.04
203
203
204
204
steps :
205
205
- name : Checkout
Original file line number Diff line number Diff line change 1
- sbt.version =1.9.0
1
+ sbt.version =1.9.8
You can’t perform that action at this time.
0 commit comments