Compare commits

..

8 Commits

Author SHA1 Message Date
5a18a5ec0c chore(deps): update davidanson/markdownlint-cli2-action action to v21
All checks were successful
Build / build-amd64 (pull_request) Successful in 1m36s
Lint Markdown files / markdown-lint (pull_request) Successful in 4s
Build / build-arm64 (pull_request) Successful in 4m26s
2025-11-17 02:07:02 +00:00
ae89e1e65d chore(deps): restrict updates of docker/compose to minor and patch
All checks were successful
Build / build-amd64 (push) Successful in 2m50s
Lint Markdown files / markdown-lint (push) Successful in 4s
Build / build-arm64 (push) Successful in 4m59s
2025-11-16 16:50:46 +01:00
3add6b6f5e fix(ci): trigger push tagged images workflow based on condition
All checks were successful
Build / build-amd64 (push) Successful in 4m4s
Lint Markdown files / markdown-lint (push) Successful in 4s
Build / build-arm64 (push) Successful in 5m50s
2025-11-12 21:29:59 +01:00
94db71a858 chore(deps): update docker.io/library/golang docker tag to v1.25.4
All checks were successful
Build / build-amd64 (pull_request) Successful in 1m30s
Lint Markdown files / markdown-lint (pull_request) Successful in 4s
Build / build-arm64 (pull_request) Successful in 4m25s
Build / build-amd64 (push) Successful in 1m29s
Lint Markdown files / markdown-lint (push) Successful in 4s
Build / build-arm64 (push) Successful in 4m25s
2025-11-05 23:05:48 +00:00
1198dc5559 chore(deps): update docker/setup-qemu-action action to v3.7.0
All checks were successful
Build / build-arm64 (pull_request) Successful in 4m25s
Lint Markdown files / markdown-lint (pull_request) Successful in 25s
Build / build-amd64 (pull_request) Successful in 1m52s
Build / build-amd64 (push) Successful in 1m33s
Lint Markdown files / markdown-lint (push) Successful in 4s
Build / build-arm64 (push) Successful in 4m21s
2025-11-05 17:07:00 +00:00
405d7abb25 style(ci): sort args
All checks were successful
Build / build-amd64 (push) Successful in 2m58s
Lint Markdown files / markdown-lint (push) Successful in 30s
Build / build-arm64 (push) Successful in 7m23s
2025-11-02 22:33:52 +01:00
c4a5b87082 docs(README): adapt example
All checks were successful
Build / build-amd64 (push) Successful in 2m21s
Lint Markdown files / markdown-lint (push) Successful in 4s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 5s
Build / build-arm64 (push) Successful in 7m1s
2025-10-30 22:57:44 +01:00
d84cc78259 fix(ci): add missing DC_VERSION
Some checks failed
Build / build-amd64 (push) Has been cancelled
Build / build-arm64 (push) Has been cancelled
Lint Markdown files / markdown-lint (push) Has been cancelled
2025-10-30 22:56:44 +01:00
7 changed files with 25 additions and 18 deletions

View File

@@ -53,6 +53,7 @@ jobs:
git push origin "${defined_tag}"
- name: Trigger "Push tagged images" workflow
if: steps.check_change.outputs.changed == 'true'
uses: actions/github-script@v8.0.0
with:
script: |

View File

@@ -8,9 +8,9 @@ env:
on:
pull_request:
types:
- "opened"
- "reopened"
- "synchronize"
- opened
- reopened
- synchronize
push:
branches:
- master
@@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest-arm64
steps:
- uses: actions/checkout@v5.0.0
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-qemu-action@v3.7.0
- uses: docker/setup-buildx-action@v3.11.1
- name: Build image
@@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest-amd64
steps:
- uses: actions/checkout@v5.0.0
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-qemu-action@v3.7.0
- uses: docker/setup-buildx-action@v3.11.1
- name: Build image

View File

@@ -16,6 +16,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5.0.0
- uses: DavidAnson/markdownlint-cli2-action@v20.0.0
- uses: DavidAnson/markdownlint-cli2-action@v21.0.0
with:
globs: '**/*.md'

View File

@@ -35,7 +35,7 @@ jobs:
fetch-tags: true
ref: "${{ steps.version_extraction.outputs.version_raw }}"
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-qemu-action@v3.7.0
- uses: docker/setup-buildx-action@v3.11.1
- uses: docker/login-action@v3.6.0
@@ -47,14 +47,15 @@ jobs:
- name: Build and push image
run: |
docker buildx build \
--build-arg DC_VERSION=${{ steps.version_extraction.outputs.version_raw }} \
--build-arg GONOSUMDB=${GONOSUMDB} \
--build-arg GOPRIVATE=${GOPRIVATE} \
--build-arg GOPROXY=${GOPROXY} \
--platform linux/arm64 \
--file Dockerfile \
--platform linux/arm64 \
--provenance false \
--tag git.cryptic.systems/volker.raschek/docker-compose:${{ steps.version_extraction.outputs.version_cleaned }}-arm64 \
--push \
--tag git.cryptic.systems/volker.raschek/docker-compose:${{ steps.version_extraction.outputs.version_cleaned }}-arm64 \
.
push-amd64:
@@ -77,7 +78,7 @@ jobs:
fetch-tags: true
ref: "${{ steps.version_extraction.outputs.version_raw }}"
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-qemu-action@v3.7.0
- uses: docker/setup-buildx-action@v3.11.1
- uses: docker/login-action@v3.6.0
@@ -89,14 +90,15 @@ jobs:
- name: Build and push image
run: |
docker buildx build \
--build-arg DC_VERSION=${{ steps.version_extraction.outputs.version_raw }} \
--build-arg GONOSUMDB=${GONOSUMDB} \
--build-arg GOPRIVATE=${GOPRIVATE} \
--build-arg GOPROXY=${GOPROXY} \
--platform linux/amd64 \
--file Dockerfile \
--platform linux/amd64 \
--provenance false \
--tag git.cryptic.systems/volker.raschek/docker-compose:${{ steps.version_extraction.outputs.version_cleaned }}-amd64 \
--push \
--tag git.cryptic.systems/volker.raschek/docker-compose:${{ steps.version_extraction.outputs.version_cleaned }}-amd64 \
.
push-manifest:

View File

@@ -1,4 +1,4 @@
FROM docker.io/library/golang:1.25.3-alpine3.21 AS build
FROM docker.io/library/golang:1.25.4-alpine3.21 AS build
ARG DC_VERSION=main
ARG GONOSUMDB

View File

@@ -14,9 +14,9 @@ image.
IMAGE_VERSION=2.40.3
docker run \
--rm \
--volume ./path/to/docker-compose.yml:/workdir/docker-compose.yml:ro \
--volume "$(pwd):$(pwd)" \
--volume /var/run/docker.sock:/var/run/docker.sock \
--workdir /workdir \
git.cryptic.systems/volker.raschek/docker-compose:${IMAGE_VERSION} \
ps
--workdir "$(pwd)" \
"git.cryptic.systems/volker.raschek/docker-compose:${IMAGE_VERSION}" \
version
```

View File

@@ -31,6 +31,10 @@
],
"matchManagers": [
"regex"
],
"matchUpdateTypes": [
"minor",
"patch"
]
}
]