Skip to content

Commit e783516

Browse files
chore(deps): pin dependencies (#16)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent babf11b commit e783516

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1919
with:
2020
submodules: recursive
2121

2222
- name: Set up Go
23-
uses: actions/setup-go@v5
23+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
2424
with:
2525
go-version-file: go.mod
2626

.github/workflows/publish.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-24.04
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2222
with:
2323
ssh-key: ${{ secrets.PUSH_KEY }}
2424
fetch-tags: true
@@ -49,28 +49,28 @@ jobs:
4949
exit 0
5050
5151
- name: Set up QEMU
52-
uses: docker/setup-qemu-action@v3
52+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
5353

5454
- name: Set up Docker Context for Buildx
5555
id: buildx-context
5656
run: |
5757
docker context create builders
5858
5959
- name: Login to GitHub Container Registry
60-
uses: docker/login-action@v3
60+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
6161
with:
6262
registry: ghcr.io
6363
username: ${{ github.actor }}
6464
password: ${{ secrets.GITHUB_TOKEN }}
6565

6666
- name: Set up Docker Buildx
6767
timeout-minutes: 5
68-
uses: docker/setup-buildx-action@v3
68+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
6969
with:
7070
version: latest
7171

7272
- name: Set up Go
73-
uses: actions/setup-go@v5
73+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
7474
with:
7575
go-version-file: go.mod
7676

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1919
with:
2020
ssh-key: ${{ secrets.PUSH_KEY }}
2121
fetch-tags: true
@@ -89,7 +89,7 @@ jobs:
8989
9090
- name: Build Changelog
9191
id: github_release
92-
uses: mikepenz/release-changelog-builder-action@v5
92+
uses: mikepenz/release-changelog-builder-action@e92187bd633e680ebfdd15961a7c30b2d097e7ad # v5
9393
with:
9494
mode: "PR"
9595
configurationJson: |
@@ -123,7 +123,7 @@ jobs:
123123

124124
- name: Create GitHub release
125125
if: ${{ env.SKIP != 'true' }}
126-
uses: softprops/action-gh-release@v2
126+
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # v2
127127
with:
128128
tag_name: ${{ env.version }}
129129
name: Release ${{ env.version }}

.github/workflows/reuse.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ jobs:
66
test:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1010
- name: REUSE Compliance Check
11-
uses: fsfe/reuse-action@v5
11+
uses: fsfe/reuse-action@bb774aa972c2a89ff34781233d275075cbddf542 # v5

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM docker.io/golang:1.23 AS builder
2+
FROM docker.io/golang:1.23@sha256:45c8837b16499b4e0e52b62d4cfba7bf04fc651b7d9265f95010fe0beaec2626 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

@@ -24,7 +24,7 @@ COPY pkg/ pkg/
2424
# by leaving it empty we can ensure that the container and binary shipped on it will have the same platform.
2525
RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -a -o manager cmd/main.go
2626

27-
FROM alpine:3.21.3
27+
FROM alpine:3.21.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
2828
RUN apk add --no-cache docker-cli kind
2929
WORKDIR /
3030
COPY --from=builder /workspace/manager .

0 commit comments

Comments
 (0)