Skip to content

Commit 41a4e7b

Browse files
committed
Use newest Ubuntu as action runner
1 parent 50a5be9 commit 41a4e7b

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.github/workflows/dependency-review.yml

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

1414
jobs:
1515
dependency-review:
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- name: 'Checkout Repository'
1919
uses: actions/checkout@v6

.github/workflows/go-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
stable:
1313
name: Stable
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- uses: actions/checkout@v6
1717
- uses: arnested/go-version-action@v1
@@ -41,7 +41,7 @@ jobs:
4141
token: ${{ secrets.PAT_TOKEN }}
4242
unstable:
4343
name: Unstable
44-
runs-on: ubuntu-22.04
44+
runs-on: ubuntu-24.04
4545
steps:
4646
- uses: actions/checkout@v6
4747
- uses: arnested/go-version-action@v1

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
jobs:
99
golangci:
1010
name: Lint
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- uses: actions/checkout@v6
1414
- name: Setup Go

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ permissions:
1010

1111
jobs:
1212
actionlint:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- uses: actions/checkout@v6
1616
- uses: reviewdog/action-actionlint@v1
1717
markdownlint:
1818
name: markdown
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
steps:
2121
- uses: actions/checkout@v6
2222
- name: Run markdownlint
2323
uses: DavidAnson/markdownlint-cli2-action@v21
2424
yamllint:
2525
name: Yamllint
26-
runs-on: ubuntu-22.04
26+
runs-on: ubuntu-24.04
2727
steps:
2828
- uses: actions/checkout@v6
2929
- name: Run Yamllint

.github/workflows/push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66
jobs:
77
generated:
88
name: Check generated code is up to date
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- uses: actions/checkout@v6
1212
- name: Setup Go
@@ -23,7 +23,7 @@ jobs:
2323
git diff --exit-code
2424
build_and_test:
2525
name: Build and test
26-
runs-on: ubuntu-22.04
26+
runs-on: ubuntu-24.04
2727
steps:
2828
- uses: actions/checkout@v6
2929
with:
@@ -66,7 +66,7 @@ jobs:
6666

6767
nilaway:
6868
name: Nilaway
69-
runs-on: ubuntu-22.04
69+
runs-on: ubuntu-24.04
7070
steps:
7171
- uses: actions/checkout@v6
7272
with:
@@ -82,7 +82,7 @@ jobs:
8282

8383
license_check:
8484
name: License check
85-
runs-on: ubuntu-22.04
85+
runs-on: ubuntu-24.04
8686
steps:
8787
- uses: actions/checkout@v6
8888
- name: Setup Go

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
contents: write
1111
jobs:
1212
bump-version:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- uses: actions/checkout@v6
1616
with:

.github/workflows/security.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717
jobs:
1818
gosec:
1919
name: Golang Security Checker
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121
steps:
2222
- name: Checkout Source
2323
uses: actions/checkout@v6
@@ -32,7 +32,7 @@ jobs:
3232
sarif_file: results.sarif
3333
govulncheck:
3434
name: Govulncheck
35-
runs-on: ubuntu-22.04
35+
runs-on: ubuntu-24.04
3636
steps:
3737
- uses: actions/checkout@v6
3838
- name: Setup Go

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
jobs:
1010
shellcheck:
1111
name: shellcheck
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- uses: actions/checkout@v6
1515
- name: Run shellcheck

0 commit comments

Comments
 (0)