Compare commits

11 Commits

Author SHA1 Message Date
69edb4377a Merge pull request 'chore(deps): update actions/checkout action to v5' (#54) from renovate/actions-checkout-5.x into master
Some checks failed
Lint Markdown files / markdown-lint (push) Successful in 4s
Release / push-amd64 (push) Failing after 56m14s
Release / sync-to-hub-docker-io (push) Successful in 28s
2025-09-19 20:09:04 +00:00
730f0d7a79 chore(deps): update actions/checkout action to v5
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 4s
2025-09-18 16:51:22 +00:00
27369eb40e Merge pull request 'chore(deps): update actions/checkout action to v4.3.0' (#52) from renovate/actions into master
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 15s
Release / push-amd64 (push) Successful in 20m28s
Release / sync-to-hub-docker-io (push) Successful in 56s
2025-08-11 13:29:48 +00:00
95967e768a chore(deps): update actions/checkout action to v4.3.0
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 8s
2025-08-11 13:05:58 +00:00
1f7724c41d Merge pull request 'chore(deps): update docker/login-action action to v3.5.0' (#51) from renovate/actions into master
Some checks failed
Lint Markdown files / markdown-lint (push) Successful in 10s
Release / push-amd64 (push) Failing after 21m41s
Release / sync-to-hub-docker-io (push) Has been cancelled
2025-08-04 16:05:02 +00:00
0803cd9e12 chore(deps): update docker/login-action action to v3.5.0
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 10s
2025-08-04 16:02:13 +00:00
ea5d986ea6 chore(deps): update docker/setup-buildx-action action to v3.11.1
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 11s
Lint Markdown files / markdown-lint (push) Successful in 11s
Release / push-amd64 (push) Successful in 17m33s
Release / sync-to-hub-docker-io (push) Successful in 1m20s
2025-06-18 10:02:57 +00:00
7241cc523f chore(deps): update docker/setup-buildx-action action to v3.11.0
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 11s
Lint Markdown files / markdown-lint (push) Successful in 10s
Release / push-amd64 (push) Successful in 17m33s
Release / sync-to-hub-docker-io (push) Successful in 1m20s
2025-06-16 13:03:01 +00:00
e044ad3daf chore(deps): update davidanson/markdownlint-cli2-action action to v20
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 4s
Lint Markdown files / markdown-lint (push) Successful in 4s
Release / push-amd64 (push) Successful in 2m49s
Release / sync-to-hub-docker-io (push) Successful in 12m52s
2025-05-15 07:03:42 +00:00
96422feb53 docs(README): allow duplicate headings
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 4s
Release / push-amd64 (push) Successful in 2m44s
Release / sync-to-hub-docker-io (push) Successful in 59s
2025-05-13 18:37:51 +02:00
191d8e99f3 docs(README): use git.cryptic.systems
Some checks failed
Release / sync-to-hub-docker-io (push) Blocked by required conditions
Lint Markdown files / markdown-lint (push) Failing after 5s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 13s
Release / push-amd64 (push) Has been cancelled
2025-05-13 18:34:25 +02:00
5 changed files with 12 additions and 9 deletions

View File

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

View File

@ -9,11 +9,11 @@ jobs:
push-amd64: push-amd64:
runs-on: ubuntu-latest-amd64 runs-on: ubuntu-latest-amd64
steps: steps:
- uses: actions/checkout@v4.2.2 - uses: actions/checkout@v5.0.0
- uses: docker/setup-qemu-action@v3.6.0 - uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.10.0 - uses: docker/setup-buildx-action@v3.11.1
- uses: docker/login-action@v3.4.0 - uses: docker/login-action@v3.5.0
with: with:
registry: git.cryptic.systems registry: git.cryptic.systems
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}

View File

@ -13,7 +13,7 @@ jobs:
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
- uses: actions/checkout@v4.2.2 - uses: actions/checkout@v5.0.0
- uses: peter-evans/dockerhub-description@v4.0.2 - uses: peter-evans/dockerhub-description@v4.0.2
with: with:
username: ${{ secrets.DOCKER_IO_USERNAME }} username: ${{ secrets.DOCKER_IO_USERNAME }}

View File

@ -68,6 +68,9 @@ MD022:
# Blank lines below heading # Blank lines below heading
lines_below: 1 lines_below: 1
MD024:
siblings_only: true
# MD025/single-title/single-h1 - Multiple top-level headings in the same document # MD025/single-title/single-h1 - Multiple top-level headings in the same document
MD025: MD025:
# Heading level # Heading level

View File

@ -50,7 +50,7 @@ To use this image for building golang applications execute this in your root fol
$ docker run \ $ docker run \
--rm \ --rm \
--volume ${PWD}:/workspace \ --volume ${PWD}:/workspace \
volkerraschek/build-image:latest \ git.cryptic.systems/volker.raschek/build-image:latest \
go build go build
``` ```
@ -64,7 +64,7 @@ $ docker run \
--env MAKEPKG_PACKAGER="Max Mustermann <max.mustermann@example.com" \ --env MAKEPKG_PACKAGER="Max Mustermann <max.mustermann@example.com" \
--rm \ --rm \
--volume ${PWD}:/workspace \ --volume ${PWD}:/workspace \
volkerraschek/build-image:latest \ git.cryptic.systems/volker.raschek/build-image:latest \
makepkg makepkg
``` ```
@ -76,6 +76,6 @@ If you want to compile instead go rust sourcecode, than you can do it similar to
$ docker run \ $ docker run \
--rm \ --rm \
--volume ${PWD}:/workspace \ --volume ${PWD}:/workspace \
volkerraschek/build-image:latest \ git.cryptic.systems/volker.raschek/build-image:latest \
cargo build --release cargo build --release
``` ```