Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/arch-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
https://sh.rustup.rs \
| sh -s -- -y --default-toolchain stable --profile minimal
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
- uses: actions/checkout@v5
- uses: actions/checkout@v7
- name: Cache /opt/adaptivecpp
id: cache-adaptivecpp
uses: actions/cache@v4
Expand Down
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@v6
- uses: actions/checkout@v7
- 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@v6
- uses: actions/checkout@v7
- 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@v6
- uses: actions/checkout@v7
- 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@v6
- uses: actions/checkout@v7
- uses: hadolint/hadolint-action@v3.3.0
with:
dockerfile: Containerfile
Expand All @@ -75,7 +75,7 @@ jobs:
name: docker compose config validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- 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@v6
- uses: actions/checkout@v7
- uses: crate-ci/typos@master

markdownlint:
name: markdownlint README
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: DavidAnson/markdownlint-cli2-action@v23
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@v6
- uses: actions/checkout@v7
- 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@v6
- uses: actions/checkout@v7
- name: Real install in ubuntu:24.04 + assert idempotent re-run
env:
ENGINE: ${{ matrix.engine }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
--build-arg XCHPLOT2_BUILD_CUDA=OFF
--build-arg INSTALL_CUDA_HEADERS=1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
- name: podman build (${{ matrix.target.name }})
run: |
podman build -t xchplot2-ci:${{ matrix.target.name }} \
Expand Down
Loading