Skip to content

Commit

Permalink
Merge pull request #157 from brian-team/update_gh_actions
Browse files Browse the repository at this point in the history
Update GitHub actions
  • Loading branch information
mstimberg authored Sep 5, 2024
2 parents ef26993 + 7553f2b commit 920bd28
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- name: "calculate versions according to NEP29"
id: nep29
uses: mstimberg/github-calc-nep29@v0.5
uses: mstimberg/github-calc-nep29@v0.7
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -20,19 +20,19 @@ jobs:
name: Build 🎡 and source 📦
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # we need the full history for the version calculation
- name: Set up Python 3.x
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Build source tarball and noarch wheel
run: |
python -m pip install --upgrade pip build wheel
python -m build
- name: store distribution 📦
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: packages
path: dist
Expand All @@ -48,7 +48,7 @@ jobs:
- build
steps:
- name: load distribution 📦
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: packages
path: dist/
Expand All @@ -68,7 +68,7 @@ jobs:
- build
steps:
- name: load distribution 📦
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: packages
path: dist/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: "calculate versions according to NEP29"
id: nep29
uses: mstimberg/github-calc-nep29@v0.5
uses: mstimberg/github-calc-nep29@v0.7
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -35,7 +35,7 @@ jobs:
shell: bash -l {0}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- name: "calculate versions according to NEP29"
id: nep29
uses: mstimberg/github-calc-nep29@v0.5
uses: mstimberg/github-calc-nep29@v0.7
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -32,7 +32,7 @@ jobs:
shell: bash -l {0}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down

0 comments on commit 920bd28

Please sign in to comment.