diff --git a/.github/workflows/_check.yml b/.github/workflows/_check.yml index a6139c1..98897ff 100644 --- a/.github/workflows/_check.yml +++ b/.github/workflows/_check.yml @@ -11,7 +11,7 @@ jobs: outputs: branch-pr: ${{ steps.script.outputs.result }} steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v8 id: script if: github.event_name == 'push' with: diff --git a/.github/workflows/_container.yml b/.github/workflows/_container.yml index 6294e1a..d4cc5d7 100644 --- a/.github/workflows/_container.yml +++ b/.github/workflows/_container.yml @@ -7,7 +7,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Need this to get version number from last tag fetch-depth: 0 @@ -60,7 +60,7 @@ jobs: labels: ${{ steps.meta.outputs.labels }} - name: Install Helm - uses: Azure/setup-helm@v4.3.0 + uses: Azure/setup-helm@v4.3.1 id: install - name: Helm login to GHCR diff --git a/.github/workflows/_dist.yml b/.github/workflows/_dist.yml index b1c4c93..a6e9f68 100644 --- a/.github/workflows/_dist.yml +++ b/.github/workflows/_dist.yml @@ -7,7 +7,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Need this to get version number from last tag fetch-depth: 0 @@ -18,7 +18,7 @@ jobs: pipx run build - name: Upload sdist and wheel as artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: dist path: dist diff --git a/.github/workflows/_docs.yml b/.github/workflows/_docs.yml index a1cafca..1c5b63b 100644 --- a/.github/workflows/_docs.yml +++ b/.github/workflows/_docs.yml @@ -11,7 +11,7 @@ jobs: run: sleep 60 - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Need this to get version number from last tag fetch-depth: 0 @@ -29,7 +29,7 @@ jobs: run: rm build/html/.doctrees/environment.pickle - name: Upload built docs artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: docs path: build diff --git a/.github/workflows/_pypi.yml b/.github/workflows/_pypi.yml index 8032bba..59e6d56 100644 --- a/.github/workflows/_pypi.yml +++ b/.github/workflows/_pypi.yml @@ -8,7 +8,7 @@ jobs: steps: - name: Download dist artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: dist path: dist diff --git a/.github/workflows/_release.yml b/.github/workflows/_release.yml index 517bcf8..f9ca831 100644 --- a/.github/workflows/_release.yml +++ b/.github/workflows/_release.yml @@ -7,7 +7,7 @@ jobs: steps: - name: Download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: merge-multiple: true @@ -23,7 +23,7 @@ jobs: - name: Create GitHub Release # We pin to the SHA, not the tag, for security reasons. # https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions - uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1 + uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0 with: prerelease: ${{ contains(github.ref_name, 'a') || contains(github.ref_name, 'b') || contains(github.ref_name, 'rc') }} files: "*" diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml index f88f506..440e41f 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Need this to get version number from last tag fetch-depth: 0 @@ -38,7 +38,7 @@ jobs: - if: inputs.python-version == 'dev' name: Upload dev-requirements.txt - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: dev-requirements path: /tmp/dev-requirements.txt diff --git a/.github/workflows/_test_system.yml b/.github/workflows/_test_system.yml index 8b2e520..ebbcf11 100644 --- a/.github/workflows/_test_system.yml +++ b/.github/workflows/_test_system.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Need this to get version number from last tag fetch-depth: 0 diff --git a/.github/workflows/_tox.yml b/.github/workflows/_tox.yml index a13536d..f7bd4d1 100644 --- a/.github/workflows/_tox.yml +++ b/.github/workflows/_tox.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install python packages uses: ./.github/actions/install_requirements