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/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install cargo-deny
uses: taiki-e/install-action@cargo-deny
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
check: [fmt, clippy, sort]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Rust
uses: dtolnay/rust-toolchain@1.88.0
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
TESTS_DATABASE_PASSWORD: postgres
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Rust
uses: dtolnay/rust-toolchain@1.88.0
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
TESTS_DATABASE_PASSWORD: postgres
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Rust
uses: dtolnay/rust-toolchain@1.88.0
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ jobs:

- name: Checkout (specific ref)
if: inputs.checkout_ref != ''
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ inputs.checkout_ref }}

- name: Checkout (default)
if: inputs.checkout_ref == ''
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: useblacksmith/setup-docker-builder@v1
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:

- name: Upload Digest
if: inputs.push == true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: digests-${{ steps.extract-name.outputs.name }}-${{ matrix.arch }}
path: /tmp/digests/*
Expand All @@ -146,7 +146,7 @@ jobs:
echo "name=$NAME" >> "$GITHUB_OUTPUT"

- name: Download Digests
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
path: /tmp/digests
pattern: digests-${{ steps.extract-name.outputs.name }}-*
Expand All @@ -168,13 +168,13 @@ jobs:

- name: Checkout (specific ref)
if: inputs.checkout_ref != ''
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ inputs.checkout_ref }}

- name: Checkout (default)
if: inputs.checkout_ref == ''
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Create and Push Multi-Arch Manifest
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
if: github.event_name == 'workflow_dispatch' && inputs.experimental == true
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ needs.resolve-ref.outputs.ref }}
fetch-depth: 0
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ jobs:
if: github.event_name == 'push'
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.x
- name: Compute Cache Key
run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- name: Restore Docs Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: mkdocs-material-${{ env.cache_id }}
path: ~/.cache
Expand All @@ -47,15 +47,15 @@ jobs:
if: github.event_name == 'pull_request'
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.x
- name: Compute Cache Key
run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- name: Restore Docs Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: mkdocs-material-${{ env.cache_id }}
path: ~/.cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
CARGO_TERM_COLOR: always
steps:
- name: Checkout (Full History)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ jobs:
steps:
- name: Checkout merge commit (PR merge)
if: github.event_name == 'pull_request'
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}

- name: Checkout main (manual dispatch)
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Create and Push Tag
shell: bash
Expand Down