File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ permissions: read-all
55jobs :
66 build :
77 name : build
8- runs-on : ubuntu-latest
8+ runs-on : ubuntu-22.04
99 steps :
1010 - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # renovate: tag=v2
1111 with :
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 }}
4646 # deploy the snapshot artifacts to Artifactory
4747 deploySnapshot :
4848 name : deploySnapshot
49- runs-on : ubuntu-20 .04
49+ runs-on : ubuntu-22 .04
5050 needs : prepare
5151 if : needs.prepare.outputs.versionType == 'SNAPSHOT'
5252 environment : snapshots
6666 # sign the milestone artifacts and deploy them to Artifactory
6767 deployMilestone :
6868 name : deployMilestone
69- runs-on : ubuntu-20 .04
69+ runs-on : ubuntu-22 .04
7070 needs : prepare
7171 if : needs.prepare.outputs.versionType == 'MILESTONE'
7272 environment : releases
8888 # sign the release artifacts and deploy them to Artifactory
8989 deployRelease :
9090 name : deployRelease
91- runs-on : ubuntu-20 .04
91+ runs-on : ubuntu-22 .04
9292 needs : prepare
9393 if : needs.prepare.outputs.versionType == 'RELEASE'
9494 environment : releases
@@ -112,7 +112,7 @@ jobs:
112112 tagMilestone :
113113 name : Tag milestone
114114 needs : [ prepare, deployMilestone ]
115- runs-on : ubuntu-20 .04
115+ runs-on : ubuntu-22 .04
116116 permissions :
117117 contents : write
118118 steps :
@@ -127,7 +127,7 @@ jobs:
127127 tagRelease :
128128 name : Tag release
129129 needs : [ prepare, deployRelease ]
130- runs-on : ubuntu-20 .04
130+ runs-on : ubuntu-22 .04
131131 permissions :
132132 contents : write
133133 steps :
You can’t perform that action at this time.
0 commit comments