From 4a5c0dddbb742c4a35fe6f00b3e3a70db02cd6cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 11:33:43 +0000 Subject: [PATCH] build(deps): Bump the actions-version group with 3 updates Bumps the actions-version group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `actions/checkout` from 4.1.6 to 4.1.7 - [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.1.6...v4.1.7) Updates `pypa/cibuildwheel` from 2.18.1 to 2.19.1 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v2.18.1...v2.19.1) Updates `pypa/gh-action-pypi-publish` from 1.8.14 to 1.9.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.8.14...v1.9.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-version - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-version - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-version ... Signed-off-by: dependabot[bot] --- .github/workflows/build_wheels.yml | 8 ++++---- .github/workflows/run_tests.yml | 2 +- .github/workflows/style_check.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index d79ad1c54..7719f0a50 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -82,12 +82,12 @@ jobs: oldest_sympy: '1.10' steps: - - uses: actions/checkout@v4.1.6 + - uses: actions/checkout@v4.1.7 with: submodules: "recursive" - name: Build wheels - uses: pypa/cibuildwheel@v2.18.1 + uses: pypa/cibuildwheel@v2.19.1 env: CIBW_BUILD: "${{ matrix.python.version }}-*" CIBW_SKIP: "{pp*,*-musllinux_*}" @@ -125,7 +125,7 @@ jobs: runs-on: ubuntu-latest if: ${{ contains(github.event.pull_request.labels.*.name, 'build_wheels') || github.event_name != 'pull_request' }} steps: - - uses: actions/checkout@v4.1.6 + - uses: actions/checkout@v4.1.7 with: submodules: "recursive" @@ -169,7 +169,7 @@ jobs: - name: Upload to PyPI # upload to PyPI on every tag starting with 'v' if: startsWith(github.ref, 'refs/tags/v') - uses: pypa/gh-action-pypi-publish@v1.8.14 + uses: pypa/gh-action-pypi-publish@v1.9.0 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 70034a901..5c2a8cee1 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v4.1.7 with: submodules: true diff --git a/.github/workflows/style_check.yml b/.github/workflows/style_check.yml index 0ac4c9658..325a555da 100644 --- a/.github/workflows/style_check.yml +++ b/.github/workflows/style_check.yml @@ -23,7 +23,7 @@ jobs: container: image: glotzerlab/ci:2021.11-clang10_py38 steps: - - uses: actions/checkout@v4.1.6 + - uses: actions/checkout@v4.1.7 with: submodules: true - name: Install pre-commit