Skip to content

Commit c58067c

Browse files
committed
test podman 5x
Signed-off-by: Denis Baryshev <dennybaa@gmail.com>
1 parent 79027c6 commit c58067c

File tree

2 files changed

+18
-20
lines changed

2 files changed

+18
-20
lines changed

.github/workflows/publish-runner.yaml

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ jobs:
5050
sed -En '/ARG\s+RUNNER_VERSION/ { s/ARG\s+RUNNER_VERSION=//; p; }')"
5151
echo "version=${version:-$from_file}" >> $GITHUB_OUTPUT
5252
53-
- name: Rolling tag
54-
uses: bitdeps/rolling-tag@v1
55-
id: roll
56-
with:
57-
version: v${{ steps.runner.outputs.version }}
58-
releases-only: false
53+
# - name: Rolling tag
54+
# uses: bitdeps/rolling-tag@v1
55+
# id: roll
56+
# with:
57+
# version: v${{ steps.runner.outputs.version }}
58+
# releases-only: false
5959

6060
- name: Docker meta
6161
id: meta
@@ -64,9 +64,7 @@ jobs:
6464
images: |
6565
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
6666
tags: |
67-
type=raw,value=${{ steps.roll.outputs.tag }}
68-
type=raw,value=${{ steps.roll.outputs.version }}
69-
type=raw,value=latest,enable=${{ steps.roll.outputs.updates-latest == 'true' }}
67+
type=raw,value=5x
7068
7169
- name: Setup Docker buildx
7270
uses: docker/setup-buildx-action@v3
@@ -92,10 +90,10 @@ jobs:
9290
build-args: |
9391
RUNNER_VERSION=${{ steps.runner.outputs.version }}
9492
95-
- name: Create Tag
96-
uses: mathieudutour/github-tag-action@v6.2
97-
with:
98-
custom_tag: ${{ steps.roll.outputs.tag }}
99-
github_token: ${{ secrets.GITHUB_TOKEN }}
100-
# v is already accommodated
101-
tag_prefix: ''
93+
# - name: Create Tag
94+
# uses: mathieudutour/github-tag-action@v6.2
95+
# with:
96+
# custom_tag: ${{ steps.roll.outputs.tag }}
97+
# github_token: ${{ secrets.GITHUB_TOKEN }}
98+
# # v is already accommodated
99+
# tag_prefix: ''

runners/podman.containerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
FROM ubuntu:24.04@sha256:35b7fc72eb7c652dc1f4e5bfbdb9cdb308c3a6b1b96abc61317b931007b9aac8
1+
FROM ubuntu:24.04@sha256:80dd3c3b9c6cecb9f1667e9290b3bc61b78c2678c02cbdae5f0fea92cc6734ab
22

33
ARG TARGETARCH
44
# renovate: datasource=github-releases depName=actions/runner
55
ARG RUNNER_VERSION=2.321.0
66
# renovate: datasource=github-releases depName=mgoltzsche/podman-static
7-
ARG PODMAN_VERSION=4.9.5
7+
ARG PODMAN_VERSION=5.3.1
88
# renovate: datasource=github-releases depName=containers/crun
99
ARG CRUN_VERSION=1.19.1
1010
# renovate: datasource=github-releases depName=cli/cli
11-
ARG TOOL_GH_VERSION=2.63.1
11+
ARG TOOL_GH_VERSION=2.64.0
1212

1313
ENV RUNNER_TOOLS_BIN=/runner/tools/bin
1414

@@ -80,7 +80,7 @@ COPY --chmod=755 entrypoint.sh /usr/bin
8080
## by the runner, i.e have lower priority in the PATH
8181
##
8282
ENV PATH="${PATH}:/home/runner/.local/bin:/home/runner/bin:${RUNNER_TOOLS_BIN}"
83-
ENV ImageOS=ubuntu22
83+
ENV ImageOS=ubuntu24
8484
ENV RUNNER_MANUALLY_TRAP_SIG=1
8585
ENV ACTIONS_RUNNER_PRINT_LOG_TO_STDOUT=1
8686
ENV XDG_RUNTIME_DIR=/run/user/1001

0 commit comments

Comments
 (0)