Skip to content

Commit 9d4019a

Browse files
authored
[build] Switch to ubuntu-22.04 runner (#417)
ubuntu-20.04 runner is deprecated actions/runner-images#11101 with ubuntu-latest, huge delays in the executions are observed Signed-off-by: Violeta Georgieva <violeta.georgieva@broadcom.com>
1 parent 0419589 commit 9d4019a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permissions: read-all
55
jobs:
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:

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
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 }}
@@ -46,7 +46,7 @@ jobs:
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
@@ -66,7 +66,7 @@ jobs:
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
@@ -88,7 +88,7 @@ jobs:
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:

0 commit comments

Comments
 (0)