Skip to content

Commit 649b490

Browse files
committed
chore(gh): update to ubuntu-latest runner
Updates the use of all instances of `ubuntu-20.04` to `ubuntu-latest`. The 20.04 runner image was deprecated on 2025-02-01 and will be fully unsupported by 2025-04-01. Reference: actions/runner-images#11101 Signed-off-by: Ryan Johnson <[email protected]>
1 parent 3ce7140 commit 649b490

9 files changed

+11
-11
lines changed

.github/workflows/govmomi-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ concurrency:
3434
jobs:
3535
artifacts:
3636
name: Build Snapshot Release (no upload)
37-
runs-on: ubuntu-20.04
37+
runs-on: ubuntu-latest
3838
timeout-minutes: 15
3939

4040
steps:

.github/workflows/govmomi-check-wip.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121

2222
jobs:
2323
wip:
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-latest
2525
steps:
2626
- name: Check WIP in PR Title
2727
uses: embano1/wip@v2

.github/workflows/govmomi-go-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
jobs:
2525
lint:
2626
name: Lint Files
27-
runs-on: ubuntu-20.04
27+
runs-on: ubuntu-latest
2828
timeout-minutes: 10
2929

3030
steps:

.github/workflows/govmomi-go-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
go-version: ["1.22", "1.23"]
30-
platform: ["ubuntu-20.04"]
30+
platform: ["ubuntu-latest"]
3131
fail-fast: false
3232

3333
runs-on: ${{ matrix.platform }}

.github/workflows/govmomi-govc-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
go-version: ["1.22"]
35-
platform: ["ubuntu-20.04"]
35+
platform: ["ubuntu-latest"]
3636
cmd: ["govc-test"]
3737
experimental: [false]
3838
timeout: [20]
@@ -74,7 +74,7 @@ jobs:
7474
strategy:
7575
matrix:
7676
go-version: ["1.22"]
77-
platform: ["ubuntu-20.04"]
77+
platform: ["ubuntu-latest"]
7878
runs-on: ${{ matrix.platform }}
7979
timeout-minutes: 3
8080
steps:

.github/workflows/govmomi-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
jobs:
3232
release:
3333
name: Create Release
34-
runs-on: ubuntu-20.04
34+
runs-on: ubuntu-latest
3535
timeout-minutes: 60
3636
outputs:
3737
latesttag: ${{ steps.tag.outputs.islatest }}
@@ -152,7 +152,7 @@ jobs:
152152
pull-request:
153153
needs: release
154154
name: Create CHANGELOG.md PR
155-
runs-on: ubuntu-20.04
155+
runs-on: ubuntu-latest
156156
continue-on-error: true
157157
# only update CHANGELOG for latest semver tag
158158
if: ${{ !inputs.dryrun && needs.release.outputs.latesttag == 'true' }}

.github/workflows/govmomi-stale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
jobs:
2222
stale:
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-latest
2424

2525
steps:
2626
- uses: "actions/stale@v9"

.github/workflows/issue-greeting.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
jobs:
2222
greeting:
2323
name: Send Greeting
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-latest
2525
# only send message to users not (yet) associated with repo
2626
# https://docs.github.com/en/graphql/reference/enums#commentauthorassociation
2727
if: github.event.issue.author_association == 'NONE'

.github/workflows/verify-docker-login.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
jobs:
2323
login:
2424
name: Verify Docker Login
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-latest
2626
timeout-minutes: 3
2727

2828
steps:

0 commit comments

Comments
 (0)