Skip to content

Commit b71983d

Browse files
Update GH runners (#3719)
2 parents 0633cdb + 0f69a84 commit b71983d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ${{matrix.os.name}}
3838
strategy:
3939
matrix:
40-
os: [{ name: ubuntu-22.04, bin-name: linux }, { name: macos-14, bin-name: darwin }] # { name: windows-2022, bin-name: windows }
40+
os: [{ name: ubuntu-latest, bin-name: linux }, { name: macos-latest, bin-name: darwin }] # { name: windows-latest, bin-name: windows }
4141
arch: [amd64, arm64]
4242

4343
steps:
@@ -77,7 +77,7 @@ jobs:
7777
build_images:
7878
needs: build_bins
7979
name: Build and push docker images
80-
runs-on: ubuntu-22.04
80+
runs-on: ubuntu-latest
8181
if: ${{ github.event_name != 'pull_request' }}
8282
strategy:
8383
matrix:

.github/workflows/changelog.yml

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

99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-slim
1212
name: Check for updates
1313
steps:
1414
- uses: actions/checkout@v4

.github/workflows/config-update.yml

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

99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-slim
1212
name: config-check
1313
steps:
1414
- uses: actions/checkout@v4

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ jobs:
4545
name: Unit tests
4646
strategy:
4747
matrix:
48-
os: [ubuntu-22.04, macos-14]
48+
os: [ubuntu-latest, macos-latest]
4949
go: [ '1.24', '1.25' ]
5050
exclude:
5151
# Only the latest Go version MacOS.
52-
- os: macos-14
52+
- os: macos-latest
5353
go: '1.24'
5454
# Exclude the latest Go version for Ubuntu as Coverage uses it.
55-
- os: ubuntu-22.04
55+
- os: ubuntu-latest
5656
go: '1.25'
5757

5858
steps:

.github/workflows/run-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
tests_parallel_level: 3
5555
os: >
5656
[{"runner": "ubuntu-latest", "binary": "linux-amd64"},
57-
{"runner": "macos-14", "binary": "darwin-arm64"}]
57+
{"runner": "macos-latest", "binary": "darwin-arm64"}]
5858
secrets: inherit
5959

6060
run_all_tests:
@@ -73,6 +73,6 @@ jobs:
7373
tests_parallel_level: 3
7474
os: >
7575
[{"runner": "ubuntu-latest", "binary": "linux-amd64"},
76-
{"runner": "macos-14", "binary": "darwin-arm64", "shard": 0},
77-
{"runner": "macos-14", "binary": "darwin-arm64", "shard": 1}]
76+
{"runner": "macos-latest", "binary": "darwin-arm64", "shard": 0},
77+
{"runner": "macos-latest", "binary": "darwin-arm64", "shard": 1}]
7878
secrets: inherit

0 commit comments

Comments
 (0)