Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: ShellCheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install shellcheck
run: sudo apt-get update && sudo apt-get install -y shellcheck
- name: Lint scripts/
Expand All @@ -25,7 +25,7 @@ jobs:
name: actionlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: reviewdog/action-actionlint@v1
with:
fail_level: error
Expand All @@ -37,7 +37,7 @@ jobs:
run:
working-directory: keygen-rs
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
Expand All @@ -58,7 +58,7 @@ jobs:
name: hadolint Containerfile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: Containerfile
Expand All @@ -75,7 +75,7 @@ jobs:
name: docker compose config validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: docker compose config --quiet
# Catches typos in service names / build-arg keys / unresolvable
# ${VAR} placeholders without ever pulling a base image. ~5s.
Expand All @@ -85,14 +85,14 @@ jobs:
name: typos
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: crate-ci/typos@master

markdownlint:
name: markdownlint README
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: DavidAnson/markdownlint-cli2-action@v18
with:
globs: README.md
Expand All @@ -101,7 +101,7 @@ jobs:
name: install-container-deps.sh — dry-run fixtures
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Diff --dry-run output against fixtures
# Runs --dry-run for every (distro × engine × gpu) tuple in
# arch / ubuntu / fedora containers and diffs against the
Expand All @@ -126,7 +126,7 @@ jobs:
# needs a real GPU + driver to populate the spec, and the dry-run
# fixtures already cover the planning logic for that path.
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Real install in ubuntu:24.04 + assert idempotent re-run
env:
ENGINE: ${{ matrix.engine }}
Expand Down
Loading