From 847a086755a5699f5c1293f4438e8a392bcfe825 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 15:16:20 +0000 Subject: [PATCH] Bump the actions group with 7 updates Bumps the actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `2.16.2` | `2.17.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.8.10` | `1.8.14` | | [actions/cache](https://github.com/actions/cache) | `3.3.2` | `4.0.2` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3` | `4` | Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) Updates `pypa/cibuildwheel` from 2.16.2 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.2...v2.17.0) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) Updates `pypa/gh-action-pypi-publish` from 1.8.10 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.10...v1.8.14) Updates `actions/cache` from 3.3.2 to 4.0.2 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.3.2...v4.0.2) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) Updates `codecov/codecov-action` from 3 to 4 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/cd.yml | 12 ++++++------ .github/workflows/ci.yml | 8 ++++---- .github/workflows/doc.yml | 32 ++++++++++++++++---------------- 3 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index da6e6b4d..acaaff85 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 - run: scripts/cythonize.sh - run: pipx run build --sdist - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: dist path: dist/*.tar.gz @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v4 - run: scripts/cythonize.sh - run: NO_EXTENSION=1 pipx run build - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: dist path: dist/*.whl @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v4 - run: scripts/cythonize.sh - run: scripts/generate_tests_from_examples.py - - uses: pypa/cibuildwheel@v2.16.2 + - uses: pypa/cibuildwheel@v2.17.0 env: CIBW_SKIP: pp* CIBW_TEST_COMMAND: pytest {project}/tests @@ -45,7 +45,7 @@ jobs: CIBW_BEFORE_TEST: pip install -r tests/requirements.txt # TODO is skipping still necessary? CIBW_TEST_SKIP: "*universal2:arm64" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: dist path: wheelhouse/*.whl @@ -54,10 +54,10 @@ jobs: runs-on: ubuntu-latest if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: dist path: dist - - uses: pypa/gh-action-pypi-publish@v1.8.10 + - uses: pypa/gh-action-pypi-publish@v1.8.14 with: password: ${{ secrets.PYPI_TOKEN }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e89d9096..42167d23 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: - python-version: '3.12' pytest-args: --cov=apischema --cov-branch --cov-report=xml --cov-report=html steps: - - uses: actions/cache@v3.3.2 + - uses: actions/cache@v4.0.2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('tests/requirements.txt') }} @@ -37,7 +37,7 @@ jobs: ${{ runner.os }}-pip- - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install requirements @@ -46,10 +46,10 @@ jobs: run: scripts/generate_tests_from_examples.py - name: Run tests run: pytest tests ${{ matrix.pytest-args }} - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 # https://github.community/t/run-step-if-file-exists/16445/3 if: hashFiles('coverage.xml') != '' - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: hashFiles('coverage.xml') != '' with: name: coverage diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 5df1ad3d..a6f6da1c 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -26,14 +26,14 @@ jobs: run_benchmark: runs-on: ubuntu-latest steps: - - uses: actions/cache@v3.3.2 + - uses: actions/cache@v4.0.2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('tests/requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.12' - name: Cythonize @@ -44,15 +44,15 @@ jobs: run: pip install -r benchmark/requirements.txt - name: Run benchmark run: python benchmark/main.py - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: benchmark_table path: examples/benchmark_table.md - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: benchmark_chart_light path: docs/benchmark_chart_light.svg - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: benchmark_chart_dark path: docs/benchmark_chart_dark.svg @@ -60,25 +60,25 @@ jobs: needs: [run_benchmark] runs-on: ubuntu-latest steps: - - uses: actions/cache@v3.3.2 + - uses: actions/cache@v4.0.2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('tests/requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.12' - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: benchmark_table path: examples - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: benchmark_chart_light path: docs - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: benchmark_chart_dark path: docs @@ -86,7 +86,7 @@ jobs: run: pip install -r docs/requirements.txt - name: Build documentation run: mkdocs build - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: documentation path: site/** @@ -95,26 +95,26 @@ jobs: runs-on: ubuntu-latest if: github.event_name == 'push' || github.event_name == 'release' steps: - - uses: actions/cache@v3.3.2 + - uses: actions/cache@v4.0.2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('tests/requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: # TODO bump to 3.12 when mike will support it python-version: '3.11' - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: benchmark_table path: examples - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: benchmark_chart_light path: docs - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: benchmark_chart_dark path: docs