From fd63d0341b31cafad4f58506c7c9c1b7f90b06ec Mon Sep 17 00:00:00 2001 From: Marcel Stimberg Date: Thu, 5 Sep 2024 15:37:59 +0200 Subject: [PATCH 1/5] Bump actions/checkout from 3 to 4 --- .github/workflows/publish_to_pypi.yml | 2 +- .github/workflows/test_latest.yml | 2 +- .github/workflows/testsuite.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index 6527b7e..9ca6a2f 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -20,7 +20,7 @@ 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 diff --git a/.github/workflows/test_latest.yml b/.github/workflows/test_latest.yml index 2d69133..da32b61 100644 --- a/.github/workflows/test_latest.yml +++ b/.github/workflows/test_latest.yml @@ -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 diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index b27eab0..17c751c 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -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 From cd99d8368e50636c4c4bbebf570adb134819a418 Mon Sep 17 00:00:00 2001 From: Marcel Stimberg Date: Thu, 5 Sep 2024 15:47:30 +0200 Subject: [PATCH 2/5] Bump actions/setup-python from 4 to 5 --- .github/workflows/publish_to_pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index 9ca6a2f..028469d 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -24,7 +24,7 @@ jobs: 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 From a5d5d0c628a29a12c947c7e092dfb9e8e4e79d07 Mon Sep 17 00:00:00 2001 From: Marcel Stimberg Date: Thu, 5 Sep 2024 15:47:56 +0200 Subject: [PATCH 3/5] Bump actions/upload-artifact from 3 to 4 --- .github/workflows/publish_to_pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index 028469d..6c5d990 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -32,7 +32,7 @@ jobs: 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 From 6f324325156d641b310b388634ce0ea1892e2c46 Mon Sep 17 00:00:00 2001 From: Marcel Stimberg Date: Thu, 5 Sep 2024 15:48:11 +0200 Subject: [PATCH 4/5] Bump actions/download-artifact from 3 to 4 --- .github/workflows/publish_to_pypi.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index 6c5d990..6b8d5a4 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -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/ @@ -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/ From 7553f2b291b44e052d3b03c3439ac0ca5b87db36 Mon Sep 17 00:00:00 2001 From: Marcel Stimberg Date: Thu, 5 Sep 2024 15:48:46 +0200 Subject: [PATCH 5/5] Bump mstimberg/github-calc-nep29 from 0.5 to 0.7 --- .github/workflows/publish_to_pypi.yml | 2 +- .github/workflows/test_latest.yml | 2 +- .github/workflows/testsuite.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index 6b8d5a4..15fc463 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -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 }} diff --git a/.github/workflows/test_latest.yml b/.github/workflows/test_latest.yml index da32b61..33fbcc7 100644 --- a/.github/workflows/test_latest.yml +++ b/.github/workflows/test_latest.yml @@ -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 }} diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 17c751c..0cb9043 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -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 }}