File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ permissions: read-all
5
5
jobs :
6
6
checks :
7
7
name : checks
8
- runs-on : ubuntu-latest
8
+ runs-on : ubuntu-22.04
9
9
steps :
10
10
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
11
11
- uses : actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ permissions: read-all
5
5
jobs :
6
6
validation :
7
7
name : " validation"
8
- runs-on : ubuntu-latest
8
+ runs-on : ubuntu-22.04
9
9
steps :
10
10
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
11
11
- uses : gradle/actions/wrapper-validation@94baf225fe0a508e581a564467443d0e2379123b
Original file line number Diff line number Diff line change 13
13
# Notes on prepare: this job has no access to secrets, only github token. As a result, all non-core actions are centralized here
14
14
# This includes the tagging and drafting of release notes. Still, when possible we favor plain run of gradle tasks
15
15
name : prepare
16
- runs-on : ubuntu-20 .04
16
+ runs-on : ubuntu-22 .04
17
17
outputs :
18
18
versionType : ${{ steps.version.outputs.versionType }}
19
19
fullVersion : ${{ steps.version.outputs.fullVersion }}
37
37
# deploy the snapshot artifacts to Artifactory
38
38
deploySnapshot :
39
39
name : deploySnapshot
40
- runs-on : ubuntu-20 .04
40
+ runs-on : ubuntu-22 .04
41
41
needs : prepare
42
42
if : needs.prepare.outputs.versionType == 'SNAPSHOT'
43
43
environment : snapshots
57
57
# sign the milestone artifacts and deploy them to Artifactory
58
58
deployMilestone :
59
59
name : deployMilestone
60
- runs-on : ubuntu-20 .04
60
+ runs-on : ubuntu-22 .04
61
61
needs : prepare
62
62
if : needs.prepare.outputs.versionType == 'MILESTONE'
63
63
environment : releases
79
79
# sign the release artifacts and deploy them to Artifactory
80
80
deployRelease :
81
81
name : deployRelease
82
- runs-on : ubuntu-20 .04
82
+ runs-on : ubuntu-22 .04
83
83
needs : prepare
84
84
if : needs.prepare.outputs.versionType == 'RELEASE'
85
85
environment : releases
@@ -103,7 +103,7 @@ jobs:
103
103
tagMilestone :
104
104
name : Tag milestone
105
105
needs : [ prepare, deployMilestone ]
106
- runs-on : ubuntu-20 .04
106
+ runs-on : ubuntu-22 .04
107
107
permissions :
108
108
contents : write
109
109
steps :
@@ -118,7 +118,7 @@ jobs:
118
118
tagRelease :
119
119
name : Tag release
120
120
needs : [ prepare, deployRelease ]
121
- runs-on : ubuntu-20 .04
121
+ runs-on : ubuntu-22 .04
122
122
permissions :
123
123
contents : write
124
124
steps :
You can’t perform that action at this time.
0 commit comments