Skip to content

Commit

Permalink
Merge pull request #352: build(deps): bump actions/upload-artifact fr…
Browse files Browse the repository at this point in the history
…om 3 to 4
  • Loading branch information
victorlin authored Jan 30, 2024
2 parents 6da49c5 + 0fa9dd3 commit aede544
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
- run: python3 -m build

# Upload dists as workflow artifacts.
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:

# Build the executable + necessary external files from the dists.
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: dist/
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
# Upload installation archive as a workflow artifact.
#
# At least one path needs to match, or this errors.
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: standalone-${{ matrix.target }}
path: |
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
with:
python-version: ${{ matrix.python }}

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: dist/
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
python-version: '3.9'

# Download and extract the installation archive.
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: standalone-${{ matrix.target }}

Expand Down Expand Up @@ -358,20 +358,20 @@ jobs:
python-version: "3.10"
- run: python3 -m pip install --upgrade twine

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: dist/

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: standalone-x86_64-unknown-linux-gnu

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: standalone-x86_64-apple-darwin

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: standalone-x86_64-pc-windows-msvc

Expand Down

0 comments on commit aede544

Please sign in to comment.