From 7ce55f5d3a204fae43e46bb17e5bbb1ada388788 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 10:22:34 +0000 Subject: [PATCH] Bump the all group with 6 updates Bumps the all group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `2` | `3` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `3` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `2` | `3` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `4` | `5` | Updates `actions/checkout` from 3 to 4 - [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/v3...v4) Updates `docker/setup-buildx-action` from 2 to 3 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v2...v3) Updates `docker/build-push-action` from 3 to 5 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v3...v5) 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 `docker/login-action` from 2 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v2...v3) Updates `peter-evans/create-pull-request` from 4 to 5 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/license-check.yml | 2 +- .github/workflows/test.yml | 14 +++++++------- .github/workflows/update-submodules.yml | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/license-check.yml b/.github/workflows/license-check.yml index cd73512f3..6c4e7b8dd 100644 --- a/.github/workflows/license-check.yml +++ b/.github/workflows/license-check.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Gobra - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check license headers uses: viperproject/check-license-header@v2 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0b3d56f37..7441179aa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: FAILURE_LEVEL: "error" steps: - name: Checkout Gobra - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: 'recursive' - name: Check that silicon & carbon reference same silver commit @@ -49,11 +49,11 @@ jobs: # used to enable Docker caching (see https://github.com/docker/build-push-action) - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Build image up to including stage 'build' # note that the action's name is misleading: this step does NOT push - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: context: . load: true # make the built image available in docker (locally) @@ -161,13 +161,13 @@ jobs: - name: Upload RAM usage if: ${{ always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pidstat.txt path: sync/pidstat.txt - name: Build entire image - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: context: . load: true # make the built image available in docker (locally) @@ -203,7 +203,7 @@ jobs: - name: Login to Github Packages if: env.SHOULD_DEPLOY == 'true' - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -211,7 +211,7 @@ jobs: - name: Push entire image if: env.SHOULD_DEPLOY == 'true' - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: context: . file: workflow-container/Dockerfile diff --git a/.github/workflows/update-submodules.yml b/.github/workflows/update-submodules.yml index efc59dc7d..0b8ca8708 100644 --- a/.github/workflows/update-submodules.yml +++ b/.github/workflows/update-submodules.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true @@ -35,7 +35,7 @@ jobs: - name: Open a pull request id: pr - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v5 if: env.PREV_VIPERSERVER_REF != env.CUR_VIPERSERVER_REF with: # Use viper-admin's token to workaround a restriction of GitHub.