Compare commits

...

7 Commits

Author SHA1 Message Date
4c86097f5e
chore(deps): update docker.io/library/rockylinux docker tag to v9
Some checks failed
Lint Markdown files / markdown-lint (pull_request) Successful in 16s
Build / build-arch-linux (pull_request) Successful in 11m50s
Build / build-rocky-linux-8 (pull_request) Failing after 6m12s
2025-05-08 19:00:22 +00:00
9e9f46b54d
fix(ci): style
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 10s
Build / build-arch-linux (push) Successful in 11m52s
Build / build-rocky-linux-8 (push) Successful in 8m27s
2025-05-08 18:17:18 +02:00
436f2d969e
fix(ci): use markdown lint action
Some checks failed
Build / build-rocky-linux-8 (push) Has been cancelled
Build / build-arch-linux (push) Has been cancelled
Lint Markdown files / markdown-lint (push) Successful in 16s
2025-05-08 18:12:01 +02:00
91e93f7411
fix(ci): use markdown lint action 2025-05-08 18:11:55 +02:00
c06beae2c2
fix(ci): adapt markdownlint
Some checks failed
Build / build-rocky-linux-8 (push) Has been cancelled
Build / build-arch-linux (push) Has been cancelled
Lint Markdown files / markdown-lint (push) Successful in 11s
2025-05-08 18:06:02 +02:00
1d2a90f375
fix(ci): adapt markdownlint
Some checks failed
Build / build-arch-linux (push) Has been cancelled
Build / build-rocky-linux-8 (push) Has been cancelled
Lint Markdown files / markdown-lint (push) Successful in 10s
2025-05-08 18:03:54 +02:00
50b836e00c
fix(ci): add markdownlint
Some checks failed
Build / build-rocky-linux-8 (push) Waiting to run
Lint Markdown files / markdown-lint (push) Successful in 10s
Build / build-arch-linux (push) Has been cancelled
2025-05-08 18:02:29 +02:00
3 changed files with 26 additions and 4 deletions

View File

@ -3,9 +3,9 @@ name: Build
on:
pull_request:
types:
- "opened"
- "reopened"
- "synchronize"
- opened
- reopened
- synchronize
push:
branches:
- master

View File

@ -0,0 +1,22 @@
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@v19.1.0
with:
globs: '**/*.md'

View File

@ -1,4 +1,4 @@
FROM docker.io/library/rockylinux:8
FROM docker.io/library/rockylinux:9
RUN dnf update --assumeyes && \
dnf install --assumeyes bash-completion sudo && \