diff --git a/.github/workflows/_container.yml b/.github/workflows/_container.yml index c6cd4697..1d02e99f 100644 --- a/.github/workflows/_container.yml +++ b/.github/workflows/_container.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # Need this to get version number from last tag fetch-depth: 0 diff --git a/.github/workflows/_dist.yml b/.github/workflows/_dist.yml index 04522af3..9fdb47fd 100644 --- a/.github/workflows/_dist.yml +++ b/.github/workflows/_dist.yml @@ -7,13 +7,13 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # Need this to get version number from last tag fetch-depth: 0 - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 - name: Build sdist and wheel run: > diff --git a/.github/workflows/_docs.yml b/.github/workflows/_docs.yml index 84d56de1..272a30f2 100644 --- a/.github/workflows/_docs.yml +++ b/.github/workflows/_docs.yml @@ -12,7 +12,7 @@ jobs: run: sleep 60 - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # Need this to get version number from last tag fetch-depth: 0 @@ -21,7 +21,7 @@ jobs: run: sudo apt-get install graphviz - name: Install uv - uses: astral-sh/setup-uv@v5 + uses: astral-sh/setup-uv@v7 - name: Build docs run: uv run --locked tox -e docs diff --git a/.github/workflows/_example.yml b/.github/workflows/_example.yml index c9db8f7b..95861afb 100644 --- a/.github/workflows/_example.yml +++ b/.github/workflows/_example.yml @@ -9,13 +9,13 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # Need this to get version number from last tag fetch-depth: 0 - name: Install uv - uses: astral-sh/setup-uv@v5 + uses: astral-sh/setup-uv@v7 - name: Regenerate example run: | diff --git a/.github/workflows/_pypi.yml b/.github/workflows/_pypi.yml index 8032bbaa..fa78b9ea 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@v5 with: name: dist path: dist diff --git a/.github/workflows/_release.yml b/.github/workflows/_release.yml index 3f949fcc..15171d44 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@v5 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@da05d552573ad5aba039eaac05058a918a7bf631 # v2.2.2 + uses: softprops/action-gh-release@6da8fa9354ddfdc4aeace5fc48d7f679b5214090 # v2.4.1 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 b7d678b9..15c244ca 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -24,13 +24,13 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # Need this to get version number from last tag fetch-depth: 0 - name: Install uv - uses: astral-sh/setup-uv@v5 + uses: astral-sh/setup-uv@v7 - name: Run tests run: uv run --locked tox -e tests diff --git a/.github/workflows/_tox.yml b/.github/workflows/_tox.yml index 995a45bf..56eddd4e 100644 --- a/.github/workflows/_tox.yml +++ b/.github/workflows/_tox.yml @@ -13,10 +13,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install uv - uses: astral-sh/setup-uv@v5 + uses: astral-sh/setup-uv@v7 - name: Run tox run: uv run --locked tox -e ${{ inputs.tox }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index e4f482a6..473354fa 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: PR Conventional Commit Validation - uses: ytanikin/pr-conventional-commits@1.4.1 + uses: ytanikin/pr-conventional-commits@1.4.2 with: task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]' add_label: 'false'