Skip to content

Commit fd91867

Browse files
committed
fix: Dependabot pr
1 parent 4954d8e commit fd91867

8 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
go-version:
15-
- 1.22.x
15+
- 1.25.x
1616
platform:
1717
- ubuntu-latest
1818
- macos-latest

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install Go
2121
uses: actions/setup-go@v3
2222
with:
23-
go-version: 1.22.x
23+
go-version: 1.25.x
2424
- name: Checkout code
2525
uses: actions/checkout@v3
2626
with:
@@ -42,7 +42,7 @@ jobs:
4242
- name: Install Go
4343
uses: actions/setup-go@v2
4444
with:
45-
go-version: 1.22.x
45+
go-version: 1.25.x
4646
- name: Checkout code
4747
uses: actions/checkout@v2
4848
with:

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
golangci:
99
strategy:
1010
matrix:
11-
go-version: [1.22.x]
11+
go-version: [1.25.x]
1212
os: [ubuntu-latest, macos-latest, windows-latest]
1313
name: lint
1414
runs-on: ${{ matrix.os }}
@@ -35,9 +35,9 @@ jobs:
3535
fi
3636
3737
- name: golangci-lint
38-
uses: golangci/golangci-lint-action@v6
38+
uses: golangci/golangci-lint-action@v8
3939
with:
40-
version: v1.63
40+
version: v2.12.2
4141
args: --timeout=5m
4242
only-new-issues: true
4343

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Install Go
1313
uses: actions/setup-go@v2
1414
with:
15-
go-version: 1.22.x
15+
go-version: 1.25.x
1616
- name: Checkout code
1717
uses: actions/checkout@v2
1818
with:

.github/workflows/rollback.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Install Go
1212
uses: actions/setup-go@v2
1313
with:
14-
go-version: 1.22.x
14+
go-version: 1.25.x
1515
- name: Checkout code
1616
uses: actions/checkout@v2
1717
with:

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install Go
2727
uses: actions/setup-go@v3
2828
with:
29-
go-version: 1.22.x
29+
go-version: 1.25.x
3030
- name: Cache deps
3131
uses: actions/cache@v3
3232
with:
@@ -44,7 +44,7 @@ jobs:
4444
- name: Install Go
4545
uses: actions/setup-go@v2
4646
with:
47-
go-version: 1.22.x
47+
go-version: 1.25.x
4848
- name: Checkout code
4949
uses: actions/checkout@v2
5050
with:

attach/attach.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func Upload(endpoint string, identifyingKey string, timestamp string, dependenci
7373
if !printedUrls[url] {
7474
infoStr := fmt.Sprintf("\t%v\n", url)
7575
filteredOutput := color.ColorString(color.LightBlue, infoStr)
76-
log.Infof(filteredOutput)
76+
log.Infof("%s", filteredOutput)
7777
}
7878
printedUrls[url] = true
7979
}

output/output.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ func WriteLineResults() []registration.TaskResult {
318318
log.Info(filteredOutput)
319319
}
320320
if len(hsmPayload) > 0 {
321-
log.Infof(hsmResult.Summary)
321+
log.Infof("%s", hsmResult.Summary)
322322
if config.Flags.AutoAttach || config.Flags.APIKey != "" {
323323
log.Info("See your uploaded results to validate High Security Mode settings.\n")
324324
} else {

0 commit comments

Comments
 (0)