Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
needs: [prepare-release]
if: always() && (needs.prepare-release.result == 'success' || needs.prepare-release.result == 'skipped')
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || '' }}
- name: Install Rust
Expand All @@ -96,7 +96,7 @@ jobs:
matrix:
go-version: ['1.25', 'stable']
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || '' }}
- name: Install Rust
Expand All @@ -119,7 +119,7 @@ jobs:
needs: rust-test
if: always() && needs.rust-test.result == 'success'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || '' }}
- name: Install Node
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
target: universal2-apple-darwin
runs-on: ${{ matrix.platform.runner }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || '' }}
- name: Install python
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
needs: rust-test
if: always() && needs.rust-test.result == 'success'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || '' }}
- name: Install python
Expand All @@ -223,7 +223,7 @@ jobs:
needs: python-sdist
if: always() && needs.python-sdist.result == 'success'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || '' }}
- name: Install Rust
Expand All @@ -249,7 +249,7 @@ jobs:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0 # need tags to generate release notes
ref: ${{ inputs.version }}
Expand Down
Loading