Skip to content

Commit 18f7b95

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

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"
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- name: "Checkout"
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
4444
with:
4545
persist-credentials: false
4646

@@ -78,7 +78,7 @@ jobs:
7878
runs-on: ubuntu-latest
7979
steps:
8080
- name: Checkout
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
8282
with:
8383
fetch-depth: 0
8484
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@40f1582b2485089dde7abd97c1529aa768e1baff # 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"
@@ -85,7 +85,7 @@ jobs:
8585
pull-requests: write
8686
steps:
8787
- name: "Checkout code"
88-
uses: actions/checkout@v4
88+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
8989
with:
9090
persist-credentials: true # this job is opening a PR in the next steps
9191
- 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@40f1582b2485089dde7abd97c1529aa768e1baff # 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:01e550fdb7ab79ee7be5ff440a563a58f1fd000ad9e0c532e65c3d23f917f1c5
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:5e937f439684142ba7803722b42e3c9ac9233cfa01d561de0596c1c2794fd680
22

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

0 commit comments

Comments
 (0)