Skip to content

Commit 59c9f1e

Browse files
authored
chore(ci): pin image versions in CI workflows (#1686)
Signed-off-by: Pavel Boldyrev <[email protected]>
1 parent 1069543 commit 59c9f1e

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/code-quality.yml

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

1010
jobs:
1111
qodana:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313
if: github.event.pull_request.head.repo.owner.login == 'bpg' || github.event.ref == 'refs/heads/main'
1414
permissions:
1515
contents: write

.github/workflows/golangci-lint.yml

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

1414
jobs:
1515
golangci-lint:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4

.github/workflows/link-check.yml

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

88
jobs:
99
link-check:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- name: Generate Short Lived OAuth App Token
1313
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0

.github/workflows/metrics.yml

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

1111
jobs:
1212
github-metrics:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
permissions:
1515
contents: write
1616
steps:

.github/workflows/publish.yml

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

1616
jobs:
1717
goreleaser:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-24.04
1919
steps:
2020
- name: Generate Short Lived OAuth App Token
2121
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0

.github/workflows/release-please.yml

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

99
jobs:
1010
release-please:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04
1212
permissions:
1313
contents: write
1414
steps:

.github/workflows/stale.yaml

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

77
jobs:
88
stale:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04
1010
permissions:
1111
issues: write
1212
pull-requests: write

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
build:
1111
name: Build
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313
timeout-minutes: 5
1414
steps:
1515
- name: Checkout
@@ -43,7 +43,7 @@ jobs:
4343
test:
4444
name: Unit Tests
4545
needs: build
46-
runs-on: ubuntu-latest
46+
runs-on: ubuntu-24.04
4747
steps:
4848
- name: Dump GitHub context
4949
env:

.github/workflows/testacc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
terraform: [ 1.6 ]
17-
os: [ ubuntu-latest, windows-latest, macos-latest ]
17+
os: [ ubuntu-24.04, windows-latest, macos-latest ]
1818
include:
19-
- os: ubuntu-latest
19+
- os: ubuntu-24.04
2020
node: pve1
2121
port: 13451
2222
- os: windows-latest

qodana.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version: "1.0"
2-
linter: jetbrains/qodana-go:latest
2+
linter: jetbrains/qodana-go:2024.3
33
include:
44
- name: CheckDependencyLicenses
55
- name: RegExpRedundantEscape

0 commit comments

Comments
 (0)