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/pyproject_fmt_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
target: ppc64le
steps:
- name: Download the code
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: source
- name: Build wheels
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
target: x86
steps:
- name: Download the code
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: source
- name: Build wheels
Expand All @@ -153,7 +153,7 @@ jobs:
target: aarch64
steps:
- name: Download the code
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: source
- name: Build wheels
Expand All @@ -174,7 +174,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download the code
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: source
- name: Build sdist
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Download source
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: source
path: .
Expand All @@ -217,7 +217,7 @@ jobs:
- name: Tag release
run: git tag pyproject-fmt/${{needs.bump.outputs.version}}
- name: Download wheels
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: wheels-*
path: dist
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tox_toml_fmt_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
target: ppc64le
steps:
- name: Download the code
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: source
- name: Build wheels
Expand All @@ -125,7 +125,7 @@ jobs:
target: x86
steps:
- name: Download the code
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: source
- name: Build wheels
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
target: aarch64
steps:
- name: Download the code
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: source
- name: Build wheels
Expand All @@ -174,7 +174,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download the code
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: source
- name: Build sdist
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Download source
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: source
path: .
Expand All @@ -217,7 +217,7 @@ jobs:
- name: Tag release
run: git tag tox-toml-fmt/${{needs.bump.outputs.version}}
- name: Download wheels
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: wheels-*
path: dist
Expand Down
Loading