Skip to content

Commit be8fcee

Browse files
committed
Use newest Ubuntu as action runner
1 parent 0586252 commit be8fcee

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66
jobs:
77
go-version:
88
name: Lookup go versions
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
outputs:
1111
minimal: ${{ steps.go-version.outputs.minimal }}
1212
matrix: ${{ steps.go-version.outputs.matrix }}
@@ -17,7 +17,7 @@ jobs:
1717
go_generate:
1818
name: Check generated code is up to date
1919
needs: go-version
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121
env:
2222
workdir: go/src/${{ github.repository }}
2323
steps:

.github/workflows/dependency-review.yml

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

77
jobs:
88
dependency-review:
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- name: 'Checkout Repository'
1212
uses: actions/checkout@v6

.github/workflows/docker-image-security-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
security-scan:
88
name: Docker build and scan
99
if: '!github.event.deleted'
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- uses: actions/checkout@v6
1313
- name: Set up Docker Buildx

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77
jobs:
88
dockerfile:
99
name: dockerfile
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- uses: actions/checkout@v6
1313
- name: Run hadolint
@@ -17,15 +17,15 @@ jobs:
1717

1818
markdownlint:
1919
name: markdown
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121
steps:
2222
- uses: actions/checkout@v6
2323
- name: Run markdownlint
2424
uses: DavidAnson/markdownlint-cli2-action@v21
2525

2626
golangci:
2727
name: lint
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2929
steps:
3030
- uses: actions/checkout@v6
3131
- uses: arnested/go-version-action@v1

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
actions: read
1414
jobs:
1515
bump-version:
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- uses: actions/checkout@v6
1919
with:
@@ -95,7 +95,7 @@ jobs:
9595
message: "Released `${{ github.repository }}`@`${{ github.sha }}` as ${{ steps.version.outputs.tag }}: *${{ job.status }}*."
9696
docker-build:
9797
name: Docker build and push
98-
runs-on: ubuntu-22.04
98+
runs-on: ubuntu-24.04
9999
steps:
100100
- uses: actions/checkout@v6
101101
- name: Set up Docker Buildx

.github/workflows/security.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
gosec:
1818
name: Golang Security Checker
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
env:
2121
GO111MODULE: on
2222
steps:
@@ -33,7 +33,7 @@ jobs:
3333
sarif_file: results.sarif
3434
govulncheck:
3535
name: Govulncheck
36-
runs-on: ubuntu-22.04
36+
runs-on: ubuntu-24.04
3737
steps:
3838
- uses: actions/checkout@v6
3939
- uses: arnested/go-version-action@v1

0 commit comments

Comments
 (0)