File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ permissions: read-all
55jobs :
66 checks :
77 name : checks
8- runs-on : ubuntu-latest
8+ runs-on : ubuntu-22.04
99 steps :
1010 - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1111 - uses : actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ permissions: read-all
55jobs :
66 validation :
77 name : " validation"
8- runs-on : ubuntu-latest
8+ runs-on : ubuntu-22.04
99 steps :
1010 - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1111 - uses : gradle/actions/wrapper-validation@94baf225fe0a508e581a564467443d0e2379123b
Original file line number Diff line number Diff line change 1313 # Notes on prepare: this job has no access to secrets, only github token. As a result, all non-core actions are centralized here
1414 # This includes the tagging and drafting of release notes. Still, when possible we favor plain run of gradle tasks
1515 name : prepare
16- runs-on : ubuntu-20 .04
16+ runs-on : ubuntu-22 .04
1717 outputs :
1818 versionType : ${{ steps.version.outputs.versionType }}
1919 fullVersion : ${{ steps.version.outputs.fullVersion }}
3737 # deploy the snapshot artifacts to Artifactory
3838 deploySnapshot :
3939 name : deploySnapshot
40- runs-on : ubuntu-20 .04
40+ runs-on : ubuntu-22 .04
4141 needs : prepare
4242 if : needs.prepare.outputs.versionType == 'SNAPSHOT'
4343 environment : snapshots
5757 # sign the milestone artifacts and deploy them to Artifactory
5858 deployMilestone :
5959 name : deployMilestone
60- runs-on : ubuntu-20 .04
60+ runs-on : ubuntu-22 .04
6161 needs : prepare
6262 if : needs.prepare.outputs.versionType == 'MILESTONE'
6363 environment : releases
7979 # sign the release artifacts and deploy them to Artifactory
8080 deployRelease :
8181 name : deployRelease
82- runs-on : ubuntu-20 .04
82+ runs-on : ubuntu-22 .04
8383 needs : prepare
8484 if : needs.prepare.outputs.versionType == 'RELEASE'
8585 environment : releases
@@ -103,7 +103,7 @@ jobs:
103103 tagMilestone :
104104 name : Tag milestone
105105 needs : [ prepare, deployMilestone ]
106- runs-on : ubuntu-20 .04
106+ runs-on : ubuntu-22 .04
107107 permissions :
108108 contents : write
109109 steps :
@@ -118,7 +118,7 @@ jobs:
118118 tagRelease :
119119 name : Tag release
120120 needs : [ prepare, deployRelease ]
121- runs-on : ubuntu-20 .04
121+ runs-on : ubuntu-22 .04
122122 permissions :
123123 contents : write
124124 steps :
You can’t perform that action at this time.
0 commit comments