Skip to content

Commit

Permalink
Merge pull request #261 from ap--/dependabot/github_actions/dot-githu…
Browse files Browse the repository at this point in the history
…b/workflows/actions/download-artifact-4.1.7

build(deps): bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows
  • Loading branch information
ap-- authored Sep 5, 2024
2 parents c8598e1 + 7688f06 commit 9647720
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/run_test_build_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ jobs:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup libusb-dev
Expand All @@ -39,11 +41,11 @@ jobs:
needs: [tests]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.8
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Setup libusb-dev
Expand All @@ -56,7 +58,7 @@ jobs:
run: python -m pip install build --user
- name: Build the source tarball
run: python -m build --sdist .
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: sdist
path: ./dist
Expand All @@ -80,7 +82,7 @@ jobs:
- os: 'macOS-latest'
arch: 'arm64'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -108,11 +110,11 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: sdist
path: ./dist
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheels
path: ./dist
Expand Down

0 comments on commit 9647720

Please sign in to comment.