From 34f562fb8cacb541cdb49476aa5bc71cd0957863 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 21:39:06 +0000 Subject: [PATCH] build(deps): bump the github-actions group with 6 updates Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [google-github-actions/auth](https://github.com/google-github-actions/auth) | `1.3.0` | `2.1.2` | | [google-github-actions/setup-gcloud](https://github.com/google-github-actions/setup-gcloud) | `0` | `2` | | [actions/checkout](https://github.com/actions/checkout) | `2` | `4` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `4.2.4` | `6.0.2` | | [actions/setup-go](https://github.com/actions/setup-go) | `2` | `5` | | [actions/cache](https://github.com/actions/cache) | `2` | `4` | Updates `google-github-actions/auth` from 1.3.0 to 2.1.2 - [Release notes](https://github.com/google-github-actions/auth/releases) - [Changelog](https://github.com/google-github-actions/auth/blob/main/CHANGELOG.md) - [Commits](https://github.com/google-github-actions/auth/compare/3a3c4c57d294ef65efaaee4ff17b22fa88dd3c69...55bd3a7c6e2ae7cf1877fd1ccb9d54c0503c457c) Updates `google-github-actions/setup-gcloud` from 0 to 2 - [Release notes](https://github.com/google-github-actions/setup-gcloud/releases) - [Commits](https://github.com/google-github-actions/setup-gcloud/compare/v0...v2) Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v2...v4) Updates `peter-evans/create-pull-request` from 4.2.4 to 6.0.2 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/38e0b6e68b4c852a5500a94740f0e535e0d7ba54...70a41aba780001da0a30141984ae2a0c95d8704e) Updates `actions/setup-go` from 2 to 5 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v2...v5) Updates `actions/cache` from 2 to 4 - [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...v4) --- updated-dependencies: - dependency-name: google-github-actions/auth dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: google-github-actions/setup-gcloud dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-update-workflow.yml | 8 ++++---- .github/workflows/ci-v2.yaml | 8 ++++---- .github/workflows/ci.yml | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci-update-workflow.yml b/.github/workflows/ci-update-workflow.yml index 91fcad0..dd9184b 100644 --- a/.github/workflows/ci-update-workflow.yml +++ b/.github/workflows/ci-update-workflow.yml @@ -19,12 +19,12 @@ jobs: id-token: write # Enable OIDC steps: - id: 'auth' - uses: google-github-actions/auth@3a3c4c57d294ef65efaaee4ff17b22fa88dd3c69 # v1.3.0 + uses: google-github-actions/auth@55bd3a7c6e2ae7cf1877fd1ccb9d54c0503c457c # v2.1.2 with: credentials_json: '${{ secrets.GCP_CREDENTIALS }}' - name: 'Set up Cloud SDK' - uses: google-github-actions/setup-gcloud@e30db14379863a8c79331b04a9969f4c1e225e0b # v1.1.1 + uses: google-github-actions/setup-gcloud@98ddc00a17442e89a24bbf282954a3b65ce6d200 # v2.1.0 - name: Get available Go versions run: | @@ -35,7 +35,7 @@ jobs: id: get_versions - name: Checkout appengine repo - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 # Sign the commit. # https://www.chainguard.dev/unchained/keyless-git-commit-signing-with-gitsign-and-github-actions @@ -58,7 +58,7 @@ jobs: sed -i "0,/^ go-version: \[.*/s// go-version: \[$versions_str\]/" .github/workflows/ci-v2.yaml - name: Create Pull Request - uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54 # v4.2.4 + uses: peter-evans/create-pull-request@70a41aba780001da0a30141984ae2a0c95d8704e # v6.0.2 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: Update go-version matrix diff --git a/.github/workflows/ci-v2.yaml b/.github/workflows/ci-v2.yaml index 5c56852..ec4bc88 100644 --- a/.github/workflows/ci-v2.yaml +++ b/.github/workflows/ci-v2.yaml @@ -26,13 +26,13 @@ jobs: sudo apt-get install -y python2 sudo apt-get install -y python3 - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache go modules - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.cache/go-build @@ -41,7 +41,7 @@ jobs: restore-keys: | ${{ runner.os }}-${{ matrix.go-version }}-go- - name: Set up Cloud SDK - uses: google-github-actions/setup-gcloud@v0 + uses: google-github-actions/setup-gcloud@v2 - name: Install working-directory: ${{env.working-directory}} env: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f5441e4..661a6dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,13 +25,13 @@ jobs: sudo apt-get install -y python3 export CLOUDSDK_PYTHON="python3" - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache go modules - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.cache/go-build @@ -40,7 +40,7 @@ jobs: restore-keys: | ${{ runner.os }}-${{ matrix.go-version }}-go- - name: Set up Cloud SDK - uses: google-github-actions/setup-gcloud@v0 + uses: google-github-actions/setup-gcloud@v2 - name: Install env: GO111MODULE: on