Skip to content

Commit 0bf87a7

Browse files
committed
Merge remote-tracking branch 'origin/main' into bubblewrap
2 parents d5a7612 + eb60721 commit 0bf87a7

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

.github/workflows/publish-container.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: read
1616
packages: write
1717
steps:
18-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
18+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
1919
with:
2020
fetch-depth: 0 # Needed for the version script to work.
2121
persist-credentials: false

.github/workflows/push-pr.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
permissions:
1919
contents: read
2020
steps:
21-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
21+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
2222
with:
2323
persist-credentials: false
2424
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6
@@ -37,7 +37,7 @@ jobs:
3737
permissions:
3838
contents: read
3939
steps:
40-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
40+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
4141
with:
4242
persist-credentials: false
4343
# required for bubblewrap tests
@@ -71,7 +71,7 @@ jobs:
7171
permissions:
7272
contents: read
7373
steps:
74-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
74+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
7575
with:
7676
persist-credentials: false
7777
- name: Sanity check .dockerignore

.github/workflows/release-please.yml

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

3535
- name: Generate a token
3636
id: generate-token
37-
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2
37+
uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 # v2
3838
with:
3939
app-id: ${{ env.GITHUB_APP_ID }}
4040
private-key: ${{ env.GITHUB_APP_PRIVATE_KEY }}

.github/workflows/renovate-validate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
timeout-minutes: 5
2323
steps:
2424
- name: Checkout Code
25-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
25+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2626
with:
2727
persist-credentials: false
2828

.github/workflows/renovate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
timeout-minutes: 5
1919
steps:
2020
- name: Checkout Code
21-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
21+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2222
with:
2323
persist-credentials: false
2424
- name: Self-hosted renovate

.github/workflows/validate-policy-bot-config.yml

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

2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
29+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3030
with:
3131
persist-credentials: false
3232

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
1111
--mount=type=cache,target=/root/go/pkg \
1212
CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -o /usr/local/bin/crocochrome ./cmd
1313

14-
FROM ghcr.io/grafana/chromium-swiftshader-alpine:142.0.7444.59-r0-3.22.2@sha256:4bfff84902c23158c54dbcf94ec8267624ee30700e8c642cba9b7ebbdc756785
14+
FROM ghcr.io/grafana/chromium-swiftshader-alpine:142.0.7444.59-r0-3.22.2@sha256:2e68718e106a03eabb224697430b39aedc3a9d91d250f6137258ffff174a601b
1515

1616
RUN <<EOF
17+
set -eu
1718
adduser --home / --uid 6666 --shell /bin/nologin --disabled-password k6
1819
apk --no-cache add --repository community tini bubblewrap
1920
EOF

0 commit comments

Comments
 (0)