Skip to content

Commit 1e76b52

Browse files
authored
Merge branch 'main' into dependabot/github_actions/golangci/golangci-lint-action-6.2.0
2 parents 4973c11 + c084014 commit 1e76b52

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
id: gover
1717
run: echo goversion=$(grep "AS apk" Dockerfile.test | awk -F':|-' '!/^#/ {print $2}') >> "$GITHUB_OUTPUT"
1818
- name: Set up Go
19-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # tag=v5.2.0
19+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # tag=v5.3.0
2020
with:
2121
go-version: "${{ steps.gover.outputs.goversion }}"
2222
- run: go test -race ./...
@@ -30,7 +30,7 @@ jobs:
3030
id: gover
3131
run: echo goversion=$(grep "AS apk" Dockerfile.test | awk -F':|-' '!/^#/ {print $2}') >> "$GITHUB_OUTPUT"
3232
- name: Set up Go
33-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # tag=v5.2.0
33+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # tag=v5.3.0
3434
with:
3535
go-version: "${{ steps.gover.outputs.goversion }}"
3636
- name: golangci-lint

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
id: gover
2323
run: echo goversion=$(grep "AS apk" Dockerfile.test | awk -F':|-' '!/^#/ {print $2}') >> "$GITHUB_OUTPUT"
2424
- name: Set up Go
25-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # tag=v5.2.0
25+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # tag=v5.3.0
2626
with:
2727
go-version: "${{ steps.gover.outputs.goversion }}"
2828
- name: Set up Cosign

Dockerfile.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.4 AS deb
1+
FROM golang:1.23.5 AS deb
22
WORKDIR /app
33
COPY go.mod .
44
COPY go.sum .
@@ -9,7 +9,7 @@ RUN [ "go", "test", "-v", "./internal/cli/...", "-run", "TestGenerate_InstallDeb
99

1010
# This line also determines the golang version used for GitHub Actions CI
1111
# Use the qualified image name, so Dependabot treats this separate from "golang" above.
12-
FROM docker.io/library/golang:1.23.4-alpine AS apk
12+
FROM docker.io/library/golang:1.23.5-alpine AS apk
1313
ENV CGO_ENABLED=0
1414
WORKDIR /app
1515
COPY go.mod .

0 commit comments

Comments
 (0)