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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
IMAGE: ${{ github.repository }}/sagittarius
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -34,7 +34,7 @@ jobs:
id: buildx

- name: Cache
uses: actions/cache@v5
uses: actions/cache@v6
id: cache
with:
path: cache-mount
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
checks: write
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
token: ${{ secrets.PERSONAL_TOKEN }}
- uses: dtolnay/rust-toolchain@stable
Expand All @@ -26,7 +26,7 @@ jobs:
- uses: bahmutov/npm-install@v1

- name: Run linters
uses: profiidev/rust-lint-action@v3
uses: profiidev/rust-lint-action@v4
with:
rustfmt: true
clippy: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable

- name: Cache cargo and rust files
Expand Down
Loading