From ed506fd627cc8e6b80eeea904338701d3698b79b Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:22:19 +0900 Subject: [PATCH 01/16] :arrow_up: Bump actions/checkout from 2.3.3 to 3.0.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.3 to 3.0.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/v2.3.3...v3.0.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .../.github/workflows/auto-merge-dependabot.yml | 2 +- .../.github/workflows/ci.yml | 12 ++++++------ .../.github/workflows/labeler.yml | 2 +- .../.github/workflows/publish_benchmarks.yml | 4 ++-- .../.github/workflows/publish_log4brains.yml | 2 +- .../.github/workflows/release.yml | 12 ++++++------ 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/auto-merge-dependabot.yml b/{{cookiecutter.project_slug}}/.github/workflows/auto-merge-dependabot.yml index b9620a3a3..57a4549d0 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/auto-merge-dependabot.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/auto-merge-dependabot.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest if: github.actor == 'dependabot[bot]' steps: - - uses: actions/checkout@v2.3.3 + - uses: actions/checkout@v3.0.2 - uses: ahmadnassri/action-dependabot-auto-merge@v2.4 with: target: minor diff --git a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml index b96266541..c02a71dcd 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Set up Python uses: actions/setup-python@v2.2.2 @@ -83,7 +83,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Set up Python uses: actions/setup-python@v2.2.2 @@ -126,7 +126,7 @@ jobs: name: Semgrep steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Disable Git LFS run: | @@ -154,7 +154,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Set up Python uses: actions/setup-python@v2.2.2 @@ -215,7 +215,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Set up Python uses: actions/setup-python@v2.2.2 @@ -266,7 +266,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 with: lfs: true diff --git a/{{cookiecutter.project_slug}}/.github/workflows/labeler.yml b/{{cookiecutter.project_slug}}/.github/workflows/labeler.yml index c0e1d5f52..5528bcadc 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/labeler.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/labeler.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Run Labeler uses: crazy-max/ghaction-github-labeler@v3.1.1 diff --git a/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml b/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml index f61542fb4..112eeec2b 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Set up Python uses: actions/setup-python@v2.2.2 @@ -112,7 +112,7 @@ jobs: PY_COLORS: 1 steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Set up Python uses: actions/setup-python@v2.2.2 diff --git a/{{cookiecutter.project_slug}}/.github/workflows/publish_log4brains.yml b/{{cookiecutter.project_slug}}/.github/workflows/publish_log4brains.yml index 6ecbb62a8..49aba9c34 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/publish_log4brains.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/publish_log4brains.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v3.0.2 with: persist-credentials: false # required by JamesIves/github-pages-deploy-action fetch-depth: 0 # required by Log4brains to work correctly (needs the whole Git history) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index c5499cc14..31a4a6db0 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: dev-version: {{ "${{ steps.bump-dev-version.outputs.version }}" }} steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 with: fetch-depth: 2 @@ -84,7 +84,7 @@ jobs: package-version: {{ "${{ steps.log-package-version.outputs.version }}" }} steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Set up Python uses: actions/setup-python@v2.2.2 @@ -152,7 +152,7 @@ jobs: package-version: {{ "${{ needs.package-build.outputs.package-version }}" }} steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Set up Python uses: actions/setup-python@v2.2.2 @@ -198,7 +198,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Set up Python uses: actions/setup-python@v2.2.2 @@ -238,7 +238,7 @@ jobs: needs: get-tag-xor-dev-version steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Set up Python uses: actions/setup-python@v2.2.2 @@ -311,7 +311,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v2.3.3 + uses: actions/checkout@v3.0.2 - name: Publish the release notes uses: release-drafter/release-drafter@v5.15.0 From 8bade8dbed17d3391c831bd02bb48729b178c225 Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:32:50 +0900 Subject: [PATCH 02/16] :arrow_up: Bump ahmadnassri/action-dependabot-auto-merge from 2.4 to 2.6 Bumps [ahmadnassri/action-dependabot-auto-merge](https://github.com/ahmadnassri/action-dependabot-auto-merge) from 2.4 to 2.6. - [Release notes](https://github.com/ahmadnassri/action-dependabot-auto-merge/releases) - [Commits](ahmadnassri/action-dependabot-auto-merge@v2.4...v2.6) --- updated-dependencies: - dependency-name: ahmadnassri/action-dependabot-auto-merge dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../.github/workflows/auto-merge-dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/auto-merge-dependabot.yml b/{{cookiecutter.project_slug}}/.github/workflows/auto-merge-dependabot.yml index 57a4549d0..53024c380 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/auto-merge-dependabot.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/auto-merge-dependabot.yml @@ -10,7 +10,7 @@ jobs: if: github.actor == 'dependabot[bot]' steps: - uses: actions/checkout@v3.0.2 - - uses: ahmadnassri/action-dependabot-auto-merge@v2.4 + - uses: ahmadnassri/action-dependabot-auto-merge@v2.6 with: target: minor github-token: {{ "${{ secrets.AUTO_MERGE_DEPENDABOT_TOKEN }}" }} From 1de3804e671d51c6a0e6d7b2ea41c0605a06ee13 Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:23:08 +0900 Subject: [PATCH 03/16] Bump actions/setup-python from 2.2.2 to 4.2.0 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2.2.2 to 4.2.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2.2.2...v4.2.0) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- {{cookiecutter.project_slug}}/.github/workflows/ci.yml | 10 +++++----- .../.github/workflows/publish_benchmarks.yml | 4 ++-- .../.github/workflows/release.yml | 10 +++++----- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml index c02a71dcd..b5d817040 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Set up Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v4.2.0 with: python-version: {{ "${{ matrix.python-version }}" }} @@ -86,7 +86,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Set up Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v4.2.0 with: python-version: {{ "${{ matrix.python-version }}" }} @@ -157,7 +157,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Set up Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v4.2.0 with: python-version: {{ "${{ matrix.python-version }}" }} @@ -218,7 +218,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Set up Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v4.2.0 with: python-version: {{ "${{ matrix.python-version }}" }} @@ -271,7 +271,7 @@ jobs: lfs: true - name: Set up Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v4.2.0 with: python-version: {{ "${{ matrix.python-version }}" }} diff --git a/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml b/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml index 112eeec2b..81ee83a9f 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml @@ -29,7 +29,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Set up Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v4.2.0 with: # yamllint disable-line rule:braces python-version: {{ "${{ matrix.python-version }}" }} @@ -115,7 +115,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Set up Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v4.2.0 with: python-version: "3.9" diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index 31a4a6db0..4d0999909 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: fetch-depth: 2 - name: Set up Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v4.2.0 with: python-version: "3.9" @@ -87,7 +87,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Set up Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v4.2.0 with: python-version: {{ "${{ matrix.python-version }}" }} @@ -155,7 +155,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Set up Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v4.2.0 with: python-version: "3.9" @@ -201,7 +201,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Set up Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v4.2.0 with: python-version: {{ "${{ matrix.python-version }}" }} @@ -241,7 +241,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Set up Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v4.2.0 with: python-version: "3.9" From c4d7080dbfb93007e107772214295860ab77a53a Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:24:00 +0900 Subject: [PATCH 04/16] :arrow_up: Bump actions/upload-artifact from 2.2.4 to 3.1.0 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.2.4 to 3.1.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2.2.4...v3.1.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .../.github/workflows/publish_benchmarks.yml | 2 +- {{cookiecutter.project_slug}}/.github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml b/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml index 81ee83a9f..806d64f28 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml @@ -79,7 +79,7 @@ jobs: echo "::set-output name=target_output_dir::${NAMESPACED_TARGET_OUTPUT_DIR}" - name: Store the environment-specific benchmarks - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v3.1.0 with: name: benchmark-data-files path: .benchmarks diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index 4d0999909..c6a495184 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -138,7 +138,7 @@ jobs: make package - name: Store the binary wheel - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v3.1.0 with: name: python-package-distributions path: dist From 291b48416babd8c6b0ccb4519749c4c23abe5945 Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:24:25 +0900 Subject: [PATCH 05/16] Bump actions/setup-node from 2.1.5 to 3.4.1 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2.1.5 to 3.4.1. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2.1.5...v3.4.1) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .../.github/workflows/publish_log4brains.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/publish_log4brains.yml b/{{cookiecutter.project_slug}}/.github/workflows/publish_log4brains.yml index 49aba9c34..7f1c621ee 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/publish_log4brains.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/publish_log4brains.yml @@ -28,7 +28,7 @@ jobs: persist-credentials: false # required by JamesIves/github-pages-deploy-action fetch-depth: 0 # required by Log4brains to work correctly (needs the whole Git history) - name: Install Node - uses: actions/setup-node@v2.1.5 + uses: actions/setup-node@v3.4.1 with: node-version: "14" - name: Install and Build Log4brains From 4105d6102d8efd7caa91745de1440520c2c36871 Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:25:03 +0900 Subject: [PATCH 06/16] Bump release-drafter/release-drafter from 5.15.0 to 5.21.0 Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5.15.0 to 5.21.0. - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](https://github.com/release-drafter/release-drafter/compare/v5.15.0...v5.21.0) --- updated-dependencies: - dependency-name: release-drafter/release-drafter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- {{cookiecutter.project_slug}}/.github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index c6a495184..a8a23e197 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -314,7 +314,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Publish the release notes - uses: release-drafter/release-drafter@v5.15.0 + uses: release-drafter/release-drafter@v5.21.0 with: publish: {{ "${{ needs.get-tag-xor-dev-version.outputs.tag != '' }}" }} # Annotated tag to associate with the current commit From 9f5da28b98e9c027332b20566005c69b7bc7a1a6 Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:25:35 +0900 Subject: [PATCH 07/16] Bump pypa/gh-action-pypi-publish from 1.4.2 to 1.5.1 Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.4.2 to 1.5.1. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.4.2...v1.5.1) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- {{cookiecutter.project_slug}}/.github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index a8a23e197..947d0e118 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -172,14 +172,14 @@ jobs: - name: Publish packages on PyPI if: "! needs.package-build.outputs.is-test-package" - uses: pypa/gh-action-pypi-publish@v1.4.2 + uses: pypa/gh-action-pypi-publish@v1.5.1 with: user: __token__ password: {{ "${{ secrets.PYPI_TOKEN }}" }} # pragma: allowlist secret - name: Publish packages on TestPyPI if: "needs.package-build.outputs.is-test-package" - uses: pypa/gh-action-pypi-publish@v1.4.2 + uses: pypa/gh-action-pypi-publish@v1.5.1 with: user: __token__ password: {{ "${{ secrets.TEST_PYPI_TOKEN }}" }} # pragma: allowlist secret From 7def69e168d0fc2590a1050b54fa10b8d9898e87 Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:26:05 +0900 Subject: [PATCH 08/16] :arrow_up: Bump crazy-max/ghaction-github-labeler from 3.1.1 to 4.0.0 Bumps [crazy-max/ghaction-github-labeler](https://github.com/crazy-max/ghaction-github-labeler) from 3.1.1 to 4.0.0. - [Release notes](https://github.com/crazy-max/ghaction-github-labeler/releases) - [Changelog](https://github.com/crazy-max/ghaction-github-labeler/blob/master/CHANGELOG.md) - [Commits](https://github.com/crazy-max/ghaction-github-labeler/compare/v3.1.1...v4.0.0) --- updated-dependencies: - dependency-name: crazy-max/ghaction-github-labeler dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- {{cookiecutter.project_slug}}/.github/workflows/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/labeler.yml b/{{cookiecutter.project_slug}}/.github/workflows/labeler.yml index 5528bcadc..4ebef4db5 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/labeler.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/labeler.yml @@ -15,6 +15,6 @@ jobs: uses: actions/checkout@v3.0.2 - name: Run Labeler - uses: crazy-max/ghaction-github-labeler@v3.1.1 + uses: crazy-max/ghaction-github-labeler@v4.0.0 with: skip-delete: true From f5f63d0d16ecfec2fab8a54a1603d6b387dd552b Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:26:29 +0900 Subject: [PATCH 09/16] :arrow_up: Bump actions/download-artifact from 2.0.10 to 3.0.0 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2.0.10 to 3.0.0. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v2.0.10...v3.0.0) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .../.github/workflows/publish_benchmarks.yml | 2 +- {{cookiecutter.project_slug}}/.github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml b/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml index 806d64f28..4a306b82a 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml @@ -129,7 +129,7 @@ jobs: pip install pytest-benchmark[histogram] - name: Download the benchmarks - uses: actions/download-artifact@v2.0.10 + uses: actions/download-artifact@v3.0.0 with: name: benchmark-data-files path: .benchmarks diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index 947d0e118..b4598da2f 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -165,7 +165,7 @@ jobs: pip --version - name: Download the binary wheels - uses: actions/download-artifact@v2.0.10 + uses: actions/download-artifact@v3.0.0 with: name: python-package-distributions path: dist From 69e8f5c38a9654ac1b0198bbe53bca0de69baded Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:27:06 +0900 Subject: [PATCH 10/16] :arrow_up: Bump docker/setup-qemu-action from 1 to 2 Bumps [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) from 1 to 2. - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](https://github.com/docker/setup-qemu-action/compare/v1...v2) --- updated-dependencies: - dependency-name: docker/setup-qemu-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- {{cookiecutter.project_slug}}/.github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index b4598da2f..d34ed8b01 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -257,7 +257,7 @@ jobs: # Docker build/push job ---------------------- - name: Set up QEMU - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 From d86ed29c6ac88f9d52d18b8d4eb0f1253690008d Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:27:30 +0900 Subject: [PATCH 11/16] :arrow_up: Bump docker/setup-buildx-action from 1 to 2 Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 1 to 2. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v1...v2) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- {{cookiecutter.project_slug}}/.github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index d34ed8b01..0e6a0a768 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -260,7 +260,7 @@ jobs: uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2 - name: Login to DockerHub uses: docker/login-action@v1 From 49018870ebaa9370f98cefb824df0662d2d51604 Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:27:56 +0900 Subject: [PATCH 12/16] :arrow_up: Bump docker/login-action from 1 to 2 Bumps [docker/login-action](https://github.com/docker/login-action) from 1 to 2. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1...v2) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- {{cookiecutter.project_slug}}/.github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index 0e6a0a768..50793a30d 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -263,7 +263,7 @@ jobs: uses: docker/setup-buildx-action@v2 - name: Login to DockerHub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: {{ "${{ secrets.DOCKERHUB_USERNAME }}" }} password: {{ "${{ secrets.DOCKERHUB_TOKEN }}" }} From 700476df345073256017c88225699af0869f52f7 Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:28:19 +0900 Subject: [PATCH 13/16] :arrow_up: Bump docker/build-push-action from 2 to 3 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 2 to 3. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- {{cookiecutter.project_slug}}/.github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index 50793a30d..7cdef83a9 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -287,7 +287,7 @@ jobs: - name: Build and push container image id: docker_build - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: push: true tags: {{ "${{ steps.container-image-metadata.outputs.tagged_images }}" }} From 952e56d676e775ae274a91fac7a928280baef5c1 Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:28:48 +0900 Subject: [PATCH 14/16] Bump JamesIves/github-pages-deploy-action from 4.1.4 to 4.4.0 Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.4 to 4.4.0. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](https://github.com/JamesIves/github-pages-deploy-action/compare/4.1.4...v4.4.0) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../.github/workflows/publish_log4brains.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/publish_log4brains.yml b/{{cookiecutter.project_slug}}/.github/workflows/publish_log4brains.yml index 7f1c621ee..6100627ac 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/publish_log4brains.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/publish_log4brains.yml @@ -39,7 +39,7 @@ jobs: --out "${BUILD_DIR}/adl" touch "${BUILD_DIR}/.nojekyll" - name: Deploy - uses: JamesIves/github-pages-deploy-action@4.1.4 + uses: JamesIves/github-pages-deploy-action@v4.4.0 with: branch: gh-pages # yamllint disable-line rule:braces From b41dc1ac188848d02eb496e0a0457848e85289f1 Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:29:11 +0900 Subject: [PATCH 15/16] :arrow_up: Bump codecov/codecov-action from 2.1.0 to 3.1.0 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 2.1.0 to 3.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v2.1.0...v3.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- {{cookiecutter.project_slug}}/.github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml index b5d817040..3520465a9 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml @@ -200,7 +200,7 @@ jobs: - name: Upload coverage to Codecov if: "contains(matrix.os, env.USING_COVERAGE_OS) && contains(matrix.python-version, env.USING_COVERAGE_PY_VER)" - uses: "codecov/codecov-action@v2.1.0" + uses: "codecov/codecov-action@v3.1.0" with: file: ./.tox/coverage.xml fail_ci_if_error: true From 1e55de35471925b4f1e1d57bad835ca26cb81c44 Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Mon, 19 Sep 2022 10:29:37 +0900 Subject: [PATCH 16/16] :arrow_up: Bump actions/cache from 2 to 3.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [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/v2...v3.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- {{cookiecutter.project_slug}}/.github/workflows/ci.yml | 10 +++++----- .../.github/workflows/publish_benchmarks.yml | 2 +- .../.github/workflows/release.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml index 3520465a9..adc814103 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: - name: Load cached tox testenv(s) (if they exist) id: cached-poetry-dependencies - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: | .tox @@ -108,7 +108,7 @@ jobs: - name: Load cached tox testenv(s) (if they exist) id: cached-poetry-dependencies - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: | .tox @@ -180,7 +180,7 @@ jobs: - name: Load cached tox testenv(s) (if they exist) id: cached-poetry-dependencies - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: | .tox @@ -235,7 +235,7 @@ jobs: - name: Load cached venv(s) (if they exist) id: cached-poetry-dependencies - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: | .venv @@ -293,7 +293,7 @@ jobs: - name: Load cached tox testenv(s) (if they exist) id: cached-poetry-dependencies - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: | .tox diff --git a/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml b/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml index 4a306b82a..c0c6ed22f 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/publish_benchmarks.yml @@ -52,7 +52,7 @@ jobs: - name: Load cached tox testenv(s) (if they exist) id: cached-poetry-dependencies - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: | .tox diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index 7cdef83a9..e1f62b9a1 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -108,7 +108,7 @@ jobs: - name: Load cached tox testenv(s) (if they exist) id: cached-poetry-dependencies - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: | .tox