Compare commits

..

1 Commits

Author SHA1 Message Date
CSRBot 697fe5fa72 chore(deps): update docker/setup-qemu-action action to v4
Build / build-amd64 (pull_request) Failing after 18s
Lint Markdown files / markdown-lint (pull_request) Successful in 5s
Build / build-arm64 (pull_request) Failing after 43s
2026-03-09 10:26:22 +00:00
4 changed files with 7 additions and 10 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ jobs:
- name: Trigger "Push tagged images" workflow - name: Trigger "Push tagged images" workflow
if: steps.check_change.outputs.changed == 'true' if: steps.check_change.outputs.changed == 'true'
uses: actions/github-script@v9.0.0 uses: actions/github-script@v8.0.0
with: with:
script: | script: |
const workflowFileName = 'release.yaml'; const workflowFileName = 'release.yaml';
+3 -3
View File
@@ -35,7 +35,7 @@ jobs:
- uses: docker/setup-qemu-action@v4.0.0 - uses: docker/setup-qemu-action@v4.0.0
- uses: docker/setup-buildx-action@v4.0.0 - uses: docker/setup-buildx-action@v4.0.0
- uses: docker/login-action@v4.1.0 - uses: docker/login-action@v4.0.0
with: with:
registry: git.cryptic.systems registry: git.cryptic.systems
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}
@@ -75,7 +75,7 @@ jobs:
- uses: docker/setup-qemu-action@v4.0.0 - uses: docker/setup-qemu-action@v4.0.0
- uses: docker/setup-buildx-action@v4.0.0 - uses: docker/setup-buildx-action@v4.0.0
- uses: docker/login-action@v4.1.0 - uses: docker/login-action@v4.0.0
with: with:
registry: git.cryptic.systems registry: git.cryptic.systems
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}
@@ -110,7 +110,7 @@ jobs:
echo "version_raw=${VERSION}" >> $GITHUB_OUTPUT echo "version_raw=${VERSION}" >> $GITHUB_OUTPUT
echo "version_cleaned=${VERSION/v/}" >> $GITHUB_OUTPUT echo "version_cleaned=${VERSION/v/}" >> $GITHUB_OUTPUT
- uses: docker/login-action@v4.1.0 - uses: docker/login-action@v4.0.0
with: with:
registry: git.cryptic.systems registry: git.cryptic.systems
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}
+2 -5
View File
@@ -1,6 +1,6 @@
FROM docker.io/library/ubuntu:26.04 AS download FROM docker.io/library/ubuntu:24.04 AS download
ARG DC_VERSION=v5.1.4 ARG DC_VERSION=v5.1.0
RUN NAME=docker-compose-$(uname | tr [:upper:] [:lower:])-$(uname -m); \ RUN NAME=docker-compose-$(uname | tr [:upper:] [:lower:])-$(uname -m); \
apt update --yes && \ apt update --yes && \
@@ -19,8 +19,5 @@ RUN NAME=docker-compose-$(uname | tr [:upper:] [:lower:])-$(uname -m); \
FROM scratch FROM scratch
LABEL org.opencontainers.image.description="Define and run multi-container applications with Docker" \
io.artifacthub.package.readme-url="https://github.com/docker/compose"
COPY --from=download /tmp/docker-compose /usr/bin/docker-compose COPY --from=download /tmp/docker-compose /usr/bin/docker-compose
ENTRYPOINT [ "/usr/bin/docker-compose" ] ENTRYPOINT [ "/usr/bin/docker-compose" ]
+1 -1
View File
@@ -11,7 +11,7 @@ The workflow or how `docker-compose` can in general be used is documented at
image. image.
```bash ```bash
IMAGE_VERSION=5.1.4 IMAGE_VERSION=5.1.0
docker run \ docker run \
--rm \ --rm \
--volume "$(pwd):$(pwd)" \ --volume "$(pwd):$(pwd)" \