From 7e7553fc6bf591a8ffb6c229dd4b316f7c44317e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Jul 2022 14:10:19 -0700 Subject: [PATCH 1/3] build(deps): bump actions/setup-python from 2 to 4 (#996) Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 4. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9398bc24..80af565a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,7 @@ jobs: with: fetch-depth: "0" # 0=all, needed for setuptools-scm to resolve version tags - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 name: Install Python with: python-version: ${{ matrix.python }} @@ -133,7 +133,7 @@ jobs: with: fetch-depth: "0" # 0=all, needed for setuptools-scm to resolve version tags - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 name: Install Python with: python-version: ${{ matrix.python }} @@ -188,7 +188,7 @@ jobs: with: fetch-depth: "0" # 0=all, needed for setuptools-scm to resolve version tags - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 name: Install Python with: python-version: ${{ matrix.python }} @@ -221,7 +221,7 @@ jobs: with: fetch-depth: "0" # 0=all, needed for setuptools-scm to resolve version tags - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 name: Install Python with: python-version: "3.7" From 2f8e0f7d95aec67399cf118c4ef82053de4a5bfa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Jul 2022 14:10:33 -0700 Subject: [PATCH 2/3] build(deps): bump actions/download-artifact from 2 to 3 (#995) Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 3. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 80af565a..d63161c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -244,7 +244,7 @@ jobs: runs-on: ubuntu-latest if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v3 with: name: artifact path: dist From 05e2b6698dacce898abc356222124c7a1609f569 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Jul 2022 14:10:45 -0700 Subject: [PATCH 3/3] build(deps): bump docker/setup-buildx-action from 1 to 2 (#994) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d63161c3..a895b0fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -289,7 +289,7 @@ jobs: - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2 - name: Print image tag run: echo "Building image ${DOCKER_REPOSITORY}/${DOCKER_IMAGE_NAME}:${DOCKER_IMAGE_TAG}"