Skip to content

Commit 56199c4

Browse files
committed
update go in pipelines
1 parent ecd96df commit 56199c4

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/check-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: success()
1515
uses: actions/setup-go@v6
1616
with:
17-
go-version: '1.24'
17+
go-version: '1.26'
1818
- name: Checkout code
1919
uses: actions/checkout@v6
2020
- name: Run unit tests

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- uses: actions/setup-go@v6
3232
with:
33-
go-version: '1.24'
33+
go-version: '1.26'
3434

3535
- run: |
3636
set -ex

.github/workflows/go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v6
99
- uses: actions/setup-go@v6
1010
with:
11-
go-version: '1.24'
11+
go-version: '1.26'
1212
- run: |
1313
set -ex
1414
make test

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/setup-go@v6
2424
with:
25-
go-version: '1.24'
25+
go-version: '1.26'
2626
- uses: actions/checkout@v6
2727
- name: golangci-lint
2828
uses: golangci/golangci-lint-action@v9

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v6
99
- uses: actions/setup-go@v6
1010
with:
11-
go-version: '1.24'
11+
go-version: '1.26'
1212
- run: |
1313
make validate-shell
1414
name: Lint shell/bash scripts with ShellCheck

.github/workflows/shellspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v6
99
- uses: actions/setup-go@v6
1010
with:
11-
go-version: '1.24'
11+
go-version: '1.26'
1212
- run: |
1313
make shellspec-ci
1414
name: Run shell/bash script unit tests with shellspec

.github/workflows/validate-components.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v6
1010
- uses: actions/setup-go@v6
1111
with:
12-
go-version: '1.24'
12+
go-version: '1.26'
1313
- name: Install cue
1414
run: |
1515
go version
@@ -46,7 +46,7 @@ jobs:
4646
- uses: actions/checkout@v6
4747
- uses: actions/setup-go@v6
4848
with:
49-
go-version: '1.24'
49+
go-version: '1.26'
5050
- name: Run GPU managed components version consistency test
5151
working-directory: ./e2e
5252
run: |

e2e/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ func mustGetNewRSAKeyPair() ([]byte, []byte, string) {
179179

180180
privateKeyFileName, err := writePrivateKeyToTempFile(privatePEMBytes)
181181
if err != nil {
182-
panic(fmt.Sprintf("failed to write private key to temp file: %w", err))
182+
panic(fmt.Errorf("failed to write private key to temp file: %w", err).Error())
183183
}
184184

185185
return privatePEMBytes, publicKeyBytes, privateKeyFileName

0 commit comments

Comments
 (0)