From 43de88cdd6f2b6bfed5b4979eb264354a30c387c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 11:40:21 +0000 Subject: [PATCH] build(deps): Bump the actions-version group with 4 updates Bumps the actions-version group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel), [actions/setup-python](https://github.com/actions/setup-python) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `actions/checkout` from 4.1.1 to 4.1.2 - [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.1...v4.1.2) Updates `pypa/cibuildwheel` from 2.16.5 to 2.17.0 - [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.16.5...v2.17.0) Updates `actions/setup-python` from 5.0.0 to 5.1.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5.0.0...v5.1.0) Updates `pypa/gh-action-pypi-publish` from 1.8.12 to 1.8.14 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.8.12...v1.8.14) --- 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: actions/setup-python 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-patch dependency-group: actions-version ... Signed-off-by: dependabot[bot] --- .github/workflows/build_wheels.yml | 12 ++++++------ .github/workflows/run_tests.yml | 2 +- .github/workflows/style_check.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 6dae65208..e20f374d2 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -30,12 +30,12 @@ jobs: pyver: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v4.1.1 + - uses: actions/checkout@v4.1.2 with: submodules: "recursive" - name: Build wheels - uses: pypa/cibuildwheel@v2.16.5 + uses: pypa/cibuildwheel@v2.17.0 env: # Build for cpython >= 3.6. CIBW_PROJECT_REQUIRES_PYTHON: "==${{ matrix.pyver }}.*" @@ -72,11 +72,11 @@ 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.1 + - uses: actions/checkout@v4.1.2 with: submodules: "recursive" - - uses: actions/setup-python@v5.0.0 + - uses: actions/setup-python@v5.1.0 name: Install Python with: python-version: '3.9' @@ -112,7 +112,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.12 + uses: pypa/gh-action-pypi-publish@v1.8.14 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} @@ -120,7 +120,7 @@ jobs: - name: Upload to TestPyPI # otherwise, upload to TestPyPi when secrets are available if: ${{ !startsWith(github.ref, 'refs/tags/v') && (github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')) }} - uses: pypa/gh-action-pypi-publish@v1.8.12 + uses: pypa/gh-action-pypi-publish@v1.8.14 with: user: __token__ password: ${{ secrets.TEST_PYPI_API_TOKEN }} diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 662d6e108..3f55abdbe 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -49,7 +49,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 with: submodules: true diff --git a/.github/workflows/style_check.yml b/.github/workflows/style_check.yml index 9fcb73ac4..4fa44e6ca 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.1 + - uses: actions/checkout@v4.1.2 with: submodules: true - name: Install pre-commit