Skip to content

Commit bb3b8eb

Browse files
authored
Merge pull request #2181 from urfave/use-updated-actions-labels
Use recommended GitHub Actions runner labels
2 parents 3976dfc + b755406 commit bb3b8eb

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
jobs:
1717
golangci-lint:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-24.04
1919

2020
steps:
2121
- name: Clone repository

.github/workflows/publish-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
jobs:
1414
test-docs:
1515
name: test-docs
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- uses: actions/checkout@v4
1919

@@ -44,7 +44,7 @@ jobs:
4444
if: startswith(github.ref, 'refs/tags/')
4545
name: publish
4646
needs: [test-docs]
47-
runs-on: ubuntu-latest
47+
runs-on: ubuntu-24.04
4848
steps:
4949
- uses: actions/checkout@v4
5050
with:

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
test:
1818
strategy:
1919
matrix:
20-
os: [ubuntu-latest, macos-latest, windows-latest]
20+
os: [ubuntu-24.04, macos-15, windows-2025]
2121
go: [stable, oldstable]
2222

2323
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
@@ -34,25 +34,25 @@ jobs:
3434
- name: Set PATH
3535
run: echo "${GITHUB_WORKSPACE}/.local/bin" >>"${GITHUB_PATH}"
3636

37-
- if: matrix.go == 'stable' && matrix.os == 'ubuntu-latest'
37+
- if: matrix.go == 'stable' && matrix.os == 'ubuntu-24.04'
3838
run: make ensure-goimports
3939

40-
- if: matrix.go == 'stable' && matrix.os == 'ubuntu-latest'
40+
- if: matrix.go == 'stable' && matrix.os == 'ubuntu-24.04'
4141
run: make lint
4242

4343
- run: make vet
4444
- run: make test
4545
- run: make check-binary-size
4646

47-
- if: matrix.go == 'stable' && matrix.os == 'ubuntu-latest'
47+
- if: matrix.go == 'stable' && matrix.os == 'ubuntu-24.04'
4848
run: make generate
4949

5050
- run: make diffcheck
5151

52-
- if: matrix.go == 'stable' && matrix.os == 'ubuntu-latest'
52+
- if: matrix.go == 'stable' && matrix.os == 'ubuntu-24.04'
5353
run: make v3diff
5454

55-
- if: success() && matrix.go == 'stable' && matrix.os == 'ubuntu-latest'
55+
- if: success() && matrix.go == 'stable' && matrix.os == 'ubuntu-24.04'
5656
uses: codecov/codecov-action@v5
5757
with:
5858
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)