Skip to content

Commit fbde0cb

Browse files
chore(deps): pin dependencies
Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
1 parent 8c8801f commit fbde0cb

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

.github/workflows/e2e-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
packages: write
1111
steps:
1212
- name: "Build:checkout"
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1414
with:
1515
persist-credentials: false
1616
- name: "Build:buildx"
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
steps:
4444
- name: "Checkout"
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
4646
with:
4747
persist-credentials: false
4848

@@ -81,7 +81,7 @@ jobs:
8181
runs-on: ubuntu-latest
8282
steps:
8383
- name: Checkout
84-
uses: actions/checkout@v4
84+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
8585
with:
8686
fetch-depth: 0
8787
persist-credentials: false

.github/workflows/golangci-lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
golangci:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1313
with:
1414
persist-credentials: false
15-
- uses: actions/setup-go@v5
15+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
1616
with:
1717
go-version: "1.25.x"
1818
cache: false

.github/workflows/helm-lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2323
with:
2424
persist-credentials: false
2525
fetch-depth: 0
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
version: v3.7.2
3232

33-
- uses: actions/setup-python@v2
33+
- uses: actions/setup-python@e9aba2c848f5ebd159c070c61ea2c4e2b122355e # v2
3434
with:
3535
python-version: 3.13.1
3636

.github/workflows/helm-release.yaml

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

2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
2323
with:
2424
persist-credentials: true # this job is opening a PR in the next steps
2525

.github/workflows/helm-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2121
with:
2222
fetch-depth: 0
2323
persist-credentials: false
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
version: v3.7.2
3030

31-
- uses: actions/setup-python@v2
31+
- uses: actions/setup-python@e9aba2c848f5ebd159c070c61ea2c4e2b122355e # v2
3232
with:
3333
python-version: 3.13.1
3434

.github/workflows/push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
packages: write
2121
steps:
2222
- name: "Build:checkout"
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2424
with:
2525
persist-credentials: false
2626
- name: "Set image tag name"
@@ -90,7 +90,7 @@ jobs:
9090
pull-requests: write
9191
steps:
9292
- name: "Checkout code"
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
9494
with:
9595
persist-credentials: true # this job is opening a PR in the next steps
9696
- name: "Set image tag name"

.github/workflows/unit-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
steps:
1616
- name: Install Go
17-
uses: actions/setup-go@v5
17+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
1818
with:
1919
go-version: ${{ matrix.go-version }}
2020
- name: Checkout code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2222
with:
2323
persist-credentials: false
2424
- name: Test

.github/workflows/yamllint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
lintAllTheThings:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1313
with:
1414
persist-credentials: false
1515
- name: yaml-lint

Dockerfile.controller

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -a -o manager cmd/main.go
2222

2323
# Use distroless as minimal base image to package the manager binary
2424
# Refer to https://github.com/GoogleContainerTools/distroless for more details
25-
FROM gcr.io/distroless/static:nonroot
25+
FROM gcr.io/distroless/static:nonroot@sha256:2b7c93f6d6648c11f0e80a48558c8f77885eb0445213b8e69a6a0d7c89fc6ae4
2626
WORKDIR /
2727
COPY --from=builder /workspace/manager .
2828

Dockerfile.runner

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM grafana/k6:latest
1+
FROM grafana/k6:latest@sha256:16bc2347c323b1155a200d6fe9c2b801a570b6e0e647203cf382a083782b904f
22

3-
COPY --from=kvij/scuttle:latest scuttle /bin/scuttle
3+
COPY --from=kvij/scuttle:latest@sha256:cc34a43fbc9c652ebf693cfdefaff3d425c631a944dfbbc2a7f8d9437bc73a21 scuttle /bin/scuttle
44
ENTRYPOINT ["scuttle", "k6"]

0 commit comments

Comments
 (0)