Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runners/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
# renovate: datasource=github-releases depName=actions/runner-container-hooks
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.8.0
#
ARG TARGETARCH="${TARGETARCH:-}"

Check warning on line 8 in runners/Containerfile

View workflow job for this annotation

GitHub Actions / image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$TARGETARCH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
ARG TARGETOS="${TARGETOS:-linux}"

Check warning on line 9 in runners/Containerfile

View workflow job for this annotation

GitHub Actions / image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$TARGETOS' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

# Fetch runner
# ref: https://github.com/actions/runner/blob/main/images/Dockerfile
Expand All @@ -33,13 +33,13 @@

## --- Actions Runner Image
FROM ubuntu:24.04@sha256:c35e29c9450151419d9448b0fd75374fec4fff364a27f176fb458d472dfc9e54
ARG TARGETARCH="${TARGETARCH:-}"

Check warning on line 36 in runners/Containerfile

View workflow job for this annotation

GitHub Actions / image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$TARGETARCH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
ARG TARGETOS="${TARGETOS:-linux}"

Check warning on line 37 in runners/Containerfile

View workflow job for this annotation

GitHub Actions / image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$TARGETOS' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

# renovate: datasource=github-releases depName=bitdeps/podman-static
ARG PODMAN_VERSION=5.3.1
# renovate: datasource=github-releases depName=cli/cli
ARG GH_CLI_VERSION=2.75.1
ARG GH_CLI_VERSION=2.85.0
# renovate: datasource=github-releases depName=GoogleCloudPlatform/docker-credential-gcr
ARG GCR_CREDSHELPER_VERSION=2.1.31

Expand Down