Skip to content
Merged
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/commisery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check-out the repo under $GITHUB_WORKSPACE
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run Commisery
uses: enarx/commisery-action@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v3
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Approve a PR if not already approved
run: |
gh pr checkout "$PR_URL" # sets the upstream metadata for `gh pr status`
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup Rust toolchain
run: rustup show
- name: cargo fmt
Expand All @@ -16,7 +16,7 @@ jobs:
# name: nix fmt
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v6
# - uses: actions/checkout@v7
# - uses: cachix/install-nix-action@v31
# with:
# extra_nix_config: |
Expand All @@ -31,7 +31,7 @@ jobs:
# name: nix flake check
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v6
# - uses: actions/checkout@v7
# - uses: cachix/install-nix-action@v31
# with:
# extra_nix_config: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup Rust toolchain
run: rustup show
- name: cargo test
Expand Down
Loading