1 Commits

Author SHA1 Message Date
e806dbba70 chore(deps): update docker.io/library/rockylinux docker tag to v9
Some checks failed
Build / build-arch-linux (pull_request) Successful in 11m28s
Build / build-rocky-linux-8 (pull_request) Has been cancelled
2025-05-08 13:00:20 +00:00
6 changed files with 19 additions and 36 deletions

View File

@ -3,9 +3,9 @@ name: Build
on:
pull_request:
types:
- opened
- reopened
- synchronize
- "opened"
- "reopened"
- "synchronize"
push:
branches:
- master
@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.11.1
- uses: docker/setup-buildx-action@v3.10.0
- name: Build image
run: |
@ -33,7 +33,7 @@ jobs:
steps:
- uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.11.1
- uses: docker/setup-buildx-action@v3.10.0
- name: Build image
run: |

View File

@ -1,22 +0,0 @@
name: 'Lint Markdown files'
on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- master
workflow_dispatch: {}
jobs:
markdown-lint:
runs-on:
- ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: DavidAnson/markdownlint-cli2-action@v20.0.0
with:
globs: '**/*.md'

View File

@ -11,9 +11,9 @@ jobs:
steps:
- uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.11.1
- uses: docker/setup-buildx-action@v3.10.0
- uses: docker/login-action@v3.5.0
- uses: docker/login-action@v3.4.0
with:
registry: git.cryptic.systems
username: ${{ github.repository_owner }}
@ -21,7 +21,7 @@ jobs:
- name: Build and push image
run: |
TAG=$(echo ${{ github.ref_name }} | sed 's/v//gm')
TAG=latest
docker buildx build \
--file Dockerfile.archlinux \
@ -34,9 +34,9 @@ jobs:
steps:
- uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.11.1
- uses: docker/setup-buildx-action@v3.10.0
- uses: docker/login-action@v3.5.0
- uses: docker/login-action@v3.4.0
with:
registry: git.cryptic.systems
username: ${{ github.repository_owner }}
@ -44,7 +44,7 @@ jobs:
- name: Build and push image
run: |
TAG=$(echo ${{ github.ref_name }} | sed 's/v//gm')
TAG=latest
docker buildx build \
--file Dockerfile.rockylinux8 \

View File

@ -6,7 +6,6 @@ on:
- master
paths:
- README.md
workflow_dispatch: {}
jobs:
update-description-on-hub-docker-io:

View File

@ -68,6 +68,11 @@ MD022:
# Blank lines below heading
lines_below: 1
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
MD024:
# Only check sibling headings
allow_different_nesting: true
# MD025/single-title/single-h1 - Multiple top-level headings in the same document
MD025:
# Heading level
@ -122,6 +127,7 @@ MD041:
MD044:
# List of proper names
names: []
# - some-thing
# Include code blocks
code_blocks: false
@ -133,4 +139,4 @@ MD046:
# MD048/code-fence-style - Code fence style
MD048:
# Code fence syle
style: "backtick"
style: "backtick"

View File

@ -16,6 +16,6 @@ docker run \
--rm \
--volume $(pwd):$(pwd) \
--workdir $(pwd) \
git.cryptic.systems/volker.raschek/ansible:latest \
git.cryptic.systems/volkerraschek/ansible:latest \
bash -c "ansible-galaxy install -r requirements.yaml && ansible-playbook -i inventories/demo.aws_ec2.yaml aws.yaml"
```