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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install Rust ${{ env.RUST_VERSION }} with all three targets
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
- os: windows-latest
name: Windows (x86_64)
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install Rust ${{ env.RUST_VERSION }}
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
name: Windows (x86_64)
required: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install Rust ${{ env.RUST_VERSION }}
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
# The entire point. Without this a pixel diff is unreviewable.
- name: Upload baseline / actual / diff images
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: golden-${{ runner.os }}
path: .artifacts/golden
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
name: Windows (x86_64)
slug: windows-x86_64
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install Rust ${{ env.RUST_VERSION }}
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -371,7 +371,7 @@ jobs:
SCROZZ_STAMP: ${{ steps.commit.outputs.short }}

- name: Upload ${{ matrix.slug }} artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: scrozz-${{ steps.commit.outputs.short }}-${{ matrix.slug }}
path: dist/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.RUST_VERSION }}
Expand All @@ -38,7 +38,7 @@ jobs:
tools/benchmark-capture-readiness.sh
tools/benchmark-capture-readiness.sh --constrained
} 2>&1 | tee capture-performance.txt
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: capture-performance-${{ matrix.os }}
path: capture-performance.txt
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
echo "is_alpha=false" >>"$GITHUB_OUTPUT"
fi

- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ref: ${{ format('refs/tags/{0}', steps.tag.outputs.tag) }}
fetch-depth: 0
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
# on the difference between "it builds" and "it works".

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ref: ${{ needs.resolve.outputs.sha }}
persist-credentials: false
Expand Down Expand Up @@ -925,7 +925,7 @@ jobs:

- name: Upload artefact
if: matrix.os != 'windows-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-${{ matrix.slug }}
path: |
Expand All @@ -937,7 +937,7 @@ jobs:

- name: Upload Windows artifacts
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-${{ matrix.slug }}
path: release-artifacts/*
Expand All @@ -956,12 +956,12 @@ jobs:
# The one job that needs write access, and only for creating the release.
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ref: ${{ needs.resolve.outputs.sha }}
persist-credentials: false

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
path: artifacts
merge-multiple: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/supply-chain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand Down
Loading