Skip to content
Merged
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 @@ -16,7 +16,7 @@ jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Run cargo-audit
uses: rustsec/audit-check@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: fmt
run: |
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
output: wizo.exe

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
pull-requests: write
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
issues: write

steps:
- uses: googleapis/release-please-action@v4
- uses: googleapis/release-please-action@v5
id: release
with:
target-branch: staging
config-file: release-config.json
manifest-file: .release-manifest.json

- uses: actions/checkout@v6
- uses: actions/checkout@v7
if: ${{ steps.release.outputs.release_created }}
with:
fetch-depth: 0
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
release: ${{ needs.release.outputs.tag_name }}-windows-x86_64.exe

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
retention-days: 5

- name: Download Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ matrix.platform.release }}
path: ./dist
Expand All @@ -115,7 +115,7 @@ jobs:
environment: release

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.release.outputs.tag_name }}
- uses: dtolnay/rust-toolchain@stable
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
issues: write

steps:
- uses: googleapis/release-please-action@v4
- uses: googleapis/release-please-action@v5
id: release
with:
target-branch: stable
config-file: release-config.json
manifest-file: .release-manifest.json

- uses: actions/checkout@v6
- uses: actions/checkout@v7
if: ${{ steps.release.outputs.release_created }}
with:
fetch-depth: 0
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
release: ${{ needs.release.outputs.tag_name }}-windows-x86_64.exe

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
retention-days: 5

- name: Download Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ matrix.platform.release }}
path: ./dist
Expand All @@ -115,7 +115,7 @@ jobs:
environment: release

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.release.outputs.tag_name }}
- uses: dtolnay/rust-toolchain@stable
Expand Down