Skip to content

Commit d125000

Browse files
committed
[tailscale] .github: bump to latest ubuntu LTS in workflows
Use `ubuntu-24.04` instead of `20.04` as the latter is EOL in May 2025. Updates TODO Signed-off-by: Mario Minardi <[email protected]>
1 parent 161c3b7 commit d125000

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
jobs:
2222
test:
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-24.04
2424
steps:
2525
- name: checkout
2626
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
@@ -37,7 +37,7 @@ jobs:
3737
exclude:
3838
- GOOS: windows
3939
GOARCH: arm64
40-
runs-on: ubuntu-20.04
40+
runs-on: ubuntu-24.04
4141
if: contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name)
4242
steps:
4343
- name: checkout
@@ -74,7 +74,7 @@ jobs:
7474
path: ${{ env.artifacts_path }}/${{ matrix.GOOS }}-${{ matrix.GOARCH }}.tar.gz
7575

7676
create_release:
77-
runs-on: ubuntu-20.04
77+
runs-on: ubuntu-24.04
7878
if: contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name)
7979
needs: [test, build_release]
8080
outputs:
@@ -100,7 +100,7 @@ jobs:
100100
exclude:
101101
- GOOS: windows
102102
GOARCH: arm64
103-
runs-on: ubuntu-20.04
103+
runs-on: ubuntu-24.04
104104
if: contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name)
105105
needs: [create_release]
106106
steps:
@@ -119,7 +119,7 @@ jobs:
119119
asset_content_type: application/gzip
120120

121121
clean_old:
122-
runs-on: ubuntu-20.04
122+
runs-on: ubuntu-24.04
123123
# Do not clean up old builds on workflow_dispatch to allow temporarily
124124
# re-creating old releases for backports.
125125
if: github.event_name == 'push'

0 commit comments

Comments
 (0)