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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
# we're most interested in the JUnit report generated by the local
# version of nextest, not the latest release.
if: "!cancelled()"
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: junit-${{ matrix.os }}-${{ matrix.rust-version }}.xml
path: |
Expand All @@ -152,7 +152,7 @@ jobs:
run: ./scripts/nextest-without-rustup.sh run --profile ci

- name: Upload nextest binary
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: cargo-nextest-${{ matrix.os }}-${{ matrix.rust-version }}
path: |
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:

# Upload the archive for use in the next job.
- name: Upload archive
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: fixture-archive
path: target/fixture-archive.tar.zst
Expand All @@ -234,12 +234,12 @@ jobs:
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Download nextest binary
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: cargo-nextest-${{ matrix.data.artifact-name }}-stable
path: nextest-bin
- name: Download archive
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: fixture-archive
path: fixture-archive
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Upload unsigned Windows artifact
id: upload-unsigned-artifact
if: endsWith(matrix.target, '-pc-windows-msvc')
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: ${{ matrix.target }}-unsigned
path: target/unsigned/internal-test.exe
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ jobs:
- name: Upload unsigned Windows artifact
id: upload-unsigned-artifact
if: endsWith(matrix.target, '-pc-windows-msvc')
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: ${{ matrix.target }}-unsigned
path: target/unsigned/cargo-nextest.exe
Expand Down
Loading