From 8db353853472378c902f3d0cf086f34d46342ff6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 09:03:34 -0400 Subject: [PATCH] chore(deps): bump the actions group with 2 updates (#2551) * chore(deps): bump the actions group with 2 updates Bumps the actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] * Update actions versions in documentation/examples --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Joe Rickerby --- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 10 +++++----- .github/workflows/update-dependencies.yml | 2 +- .github/workflows/update-major-minor-tag.yml | 2 +- README.md | 2 +- docs/deliver-to-pypi.md | 4 ++-- examples/github-deploy.yml | 6 +++--- examples/github-minimal.yml | 2 +- examples/github-pipx.yml | 2 +- examples/github-with-qemu.yml | 2 +- 10 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index feb14ec6..08aac1e9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: dist: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: hynek/build-and-inspect-python-package@v2 @@ -27,7 +27,7 @@ jobs: attestations: write steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: name: Packages path: dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a95cf268..aefbef55 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,7 +37,7 @@ jobs: name: Linters (mypy, ruff, etc.) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 id: python with: @@ -62,7 +62,7 @@ jobs: python_version: '3.14' timeout-minutes: 180 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 name: Install Python ${{ matrix.python_version }} with: @@ -180,7 +180,7 @@ jobs: outputs: archs: ${{ steps.archs.outputs.archs }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 with: python-version: "3.x" @@ -203,7 +203,7 @@ jobs: matrix: arch: ${{ fromJSON(needs.emulated-archs.outputs.archs) }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 with: python-version: "3.x" @@ -223,7 +223,7 @@ jobs: runs-on: ubuntu-24.04 timeout-minutes: 180 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 name: Install Python 3.12 with: diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 2f856d47..622441da 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -30,7 +30,7 @@ jobs: app-id: ${{ secrets.CIBUILDWHEEL_BOT_APP_ID }} private-key: ${{ secrets.CIBUILDWHEEL_BOT_APP_PRIVATE_KEY }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: wntrblm/nox@2025.05.01 diff --git a/.github/workflows/update-major-minor-tag.yml b/.github/workflows/update-major-minor-tag.yml index 9958811b..1f587db2 100644 --- a/.github/workflows/update-major-minor-tag.yml +++ b/.github/workflows/update-major-minor-tag.yml @@ -21,7 +21,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Update the ${{ env.TAG_NAME }} tag id: update-major-minor-tag diff --git a/README.md b/README.md index eecae798..0b22ed69 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ jobs: os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # Used to host cibuildwheel - uses: actions/setup-python@v5 diff --git a/docs/deliver-to-pypi.md b/docs/deliver-to-pypi.md index edd59b38..18812d9b 100644 --- a/docs/deliver-to-pypi.md +++ b/docs/deliver-to-pypi.md @@ -29,7 +29,7 @@ GitHub actions has pipx in all the runners as a supported package manager, as we name: Make SDist runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 # Optional, use if you use setuptools_scm submodules: true # Optional, use if you have submodules @@ -54,7 +54,7 @@ Then, you need to publish the artifacts that the previous jobs have built. This runs-on: ubuntu-latest if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: pattern: cibw-* path: dist diff --git a/examples/github-deploy.yml b/examples/github-deploy.yml index f4823c03..b994fd3f 100644 --- a/examples/github-deploy.yml +++ b/examples/github-deploy.yml @@ -45,7 +45,7 @@ jobs: platform: pyodide steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # GitHub Actions can't currently run the Android emulator on macOS. - name: Skip Android tests on macOS @@ -79,7 +79,7 @@ jobs: name: Build source distribution runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Build sdist run: pipx run build --sdist @@ -99,7 +99,7 @@ jobs: # or, alternatively, upload to PyPI on every tag starting with 'v' (remove on: release above to use this) # if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: # unpacks all CIBW artifacts into dist/ pattern: cibw-* diff --git a/examples/github-minimal.yml b/examples/github-minimal.yml index 03408eb6..3c559d25 100644 --- a/examples/github-minimal.yml +++ b/examples/github-minimal.yml @@ -12,7 +12,7 @@ jobs: os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-14] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Build wheels uses: pypa/cibuildwheel@v3.1.3 diff --git a/examples/github-pipx.yml b/examples/github-pipx.yml index dbf5f9ff..1e9c696e 100644 --- a/examples/github-pipx.yml +++ b/examples/github-pipx.yml @@ -12,7 +12,7 @@ jobs: os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-14] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Build wheels run: pipx run cibuildwheel==3.1.3 diff --git a/examples/github-with-qemu.yml b/examples/github-with-qemu.yml index 6d489647..e3202d86 100644 --- a/examples/github-with-qemu.yml +++ b/examples/github-with-qemu.yml @@ -12,7 +12,7 @@ jobs: os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-14] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up QEMU if: runner.os == 'Linux' && runner.arch == 'X64'