Skip to content

Commit

Permalink
bump runner to 2.319.0 (#261)
Browse files Browse the repository at this point in the history
  • Loading branch information
some-natalie authored Aug 9, 2024
1 parent 21d4d9f commit 5ed0dcd
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .github/linters/.hadolint.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
ignored:
- DL3007 # use latest tag
- DL3018 # apk should not pin all package versions
- DL3041 # dnf should not pin all package versions
- DL3008 # apt should not pin all package versions
- DL3003 # don't use workdir, this is readable when workdir isn't created yet
Expand Down
4 changes: 2 additions & 2 deletions deployments/helm-numbat-dind-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ template:
spec:
initContainers:
- name: init-dind-externals
image: ghcr.io/some-natalie/kubernoodles/rootless-ubuntu-jammy:test
image: ghcr.io/some-natalie/kubernoodles/rootless-ubuntu-numbat:test
imagePullPolicy: Always
command: ["cp", "-r", "-v", "/home/runner/externals/.", "/home/runner/tmpDir/"]
volumeMounts:
- name: dind-externals
mountPath: /home/runner/tmpDir
containers:
- name: runner
image: ghcr.io/some-natalie/kubernoodles/rootless-ubuntu-jammy:test
image: ghcr.io/some-natalie/kubernoodles/rootless-ubuntu-numbat:test
imagePullPolicy: Always
command: ["/home/runner/run.sh"]
env:
Expand Down
4 changes: 2 additions & 2 deletions deployments/helm-numbat-dind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ template:
spec:
initContainers:
- name: init-dind-externals
image: ghcr.io/some-natalie/kubernoodles/rootless-ubuntu-jammy:latest
image: ghcr.io/some-natalie/kubernoodles/rootless-ubuntu-numbat:latest
imagePullPolicy: Always
command: ["cp", "-r", "-v", "/home/runner/externals/.", "/home/runner/tmpDir/"]
volumeMounts:
- name: dind-externals
mountPath: /home/runner/tmpDir
containers:
- name: runner
image: ghcr.io/some-natalie/kubernoodles/rootless-ubuntu-jammy:latest
image: ghcr.io/some-natalie/kubernoodles/rootless-ubuntu-numbat:latest
imagePullPolicy: Always
command: ["/home/runner/run.sh"]
env:
Expand Down
2 changes: 1 addition & 1 deletion images/rootless-ubuntu-jammy.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04

# GitHub runner arguments
ARG RUNNER_VERSION=2.318.0
ARG RUNNER_VERSION=2.319.0
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.1

# Docker and Compose arguments
Expand Down
2 changes: 1 addition & 1 deletion images/rootless-ubuntu-numbat.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:24.04

# GitHub runner arguments
ARG RUNNER_VERSION=2.318.0
ARG RUNNER_VERSION=2.319.0
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.1

# Docker and Compose arguments
Expand Down
2 changes: 1 addition & 1 deletion images/ubi8.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LABEL org.opencontainers.image.documentation="https://github.com/some-natalie/ku

# Arguments
ARG TARGETPLATFORM
ARG RUNNER_VERSION=2.318.0
ARG RUNNER_VERSION=2.319.0
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.1

# Shell setup
Expand Down
2 changes: 1 addition & 1 deletion images/ubi9.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LABEL org.opencontainers.image.documentation="https://github.com/some-natalie/ku

# Arguments
ARG TARGETPLATFORM
ARG RUNNER_VERSION=2.318.0
ARG RUNNER_VERSION=2.319.0
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.1

# Shell setup
Expand Down
5 changes: 4 additions & 1 deletion images/wolfi.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LABEL org.opencontainers.image.documentation="https://github.com/some-natalie/ku

# Arguments
ARG TARGETPLATFORM
ARG RUNNER_VERSION=2.318.0
ARG RUNNER_VERSION=2.319.0
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.1
ARG DOTNET_VERSION=7

Expand Down Expand Up @@ -42,6 +42,9 @@ RUN apk update \

RUN export PATH=$HOME/.local/bin:$PATH

# Shell setup
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

# Make and set the working directory
RUN mkdir -p /home/runner \
&& chown -R runner:runner /home/runner
Expand Down

0 comments on commit 5ed0dcd

Please sign in to comment.