Skip to content
Closed
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/action-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Composite action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
persist-credentials: false

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
persist-credentials: false

Expand Down Expand Up @@ -60,12 +60,12 @@ jobs:
name: MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
persist-credentials: false

- name: Install Rust MSRV
uses: dtolnay/rust-toolchain@1.82.0
uses: dtolnay/rust-toolchain@1.100.0

- name: Install nasm
run: sudo apt-get update && sudo apt-get install -y nasm
Expand All @@ -81,7 +81,7 @@ jobs:
name: Supply Chain
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
persist-credentials: false

Expand All @@ -107,7 +107,7 @@ jobs:
name: Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
persist-credentials: false

Expand All @@ -130,7 +130,7 @@ jobs:
run: cargo llvm-cov --workspace --all-features --lcov --output-path lcov.info

- name: Upload coverage artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-lcov
path: lcov.info
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- os: windows-latest
target: x86_64-pc-windows-msvc
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
# Build from the requested tag (workflow_dispatch can run from any
# ref), and don't leave the job token in .git/config for cargo build.
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
"$hash $name.zip" | Out-File "dist/$name.zip.sha256" -Encoding ascii

- name: Upload packaged artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: imageopt-${{ matrix.target }}
path: dist/*
Expand All @@ -131,13 +131,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download packaged artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: dist
merge-multiple: true

- name: Upload to release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ github.event.inputs.tag || github.ref_name }}
generate_release_notes: true
Expand Down
Loading