diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index a85c0b7..6e78611 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -31,7 +31,7 @@ jobs: # from the branch is checked out or executed, which is what makes # pull_request_target safe to use here. - id: metadata - uses: dependabot/fetch-metadata@v2 + uses: dependabot/fetch-metadata@v3 - id: verdict name: Decide whether this one can merge itself diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 81119ee..827a1c8 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -28,8 +28,8 @@ jobs: name: Build the site runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/checkout@v7 + - uses: actions/setup-python@v7 with: python-version: "3.12" cache: pip @@ -40,9 +40,9 @@ jobs: # exactly the breakage nobody notices until a reader hits it. - run: mkdocs build --strict - - uses: actions/configure-pages@v5 + - uses: actions/configure-pages@v6 if: github.event_name != 'pull_request' - - uses: actions/upload-pages-artifact@v3 + - uses: actions/upload-pages-artifact@v5 if: github.event_name != 'pull_request' with: path: site @@ -57,4 +57,4 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} steps: - id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5