Skip to content

Commit 6f5a7de

Browse files
deps(actions): bump the others group across 1 directory with 7 updates
Bumps the others group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [google-github-actions/auth](https://github.com/google-github-actions/auth) | `2.1.3` | `2.1.6` | | [google-github-actions/setup-gcloud](https://github.com/google-github-actions/setup-gcloud) | `2.1.0` | `2.1.1` | | [actions/checkout](https://github.com/actions/checkout) | `4.1.7` | `4.2.1` | | [super-linter/super-linter](https://github.com/super-linter/super-linter) | `6.7.0` | `7.1.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.6.1` | `3.7.1` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6.5.0` | `6.9.0` | | [google-github-actions/deploy-cloudrun](https://github.com/google-github-actions/deploy-cloudrun) | `2.6.0` | `2.7.1` | Updates `google-github-actions/auth` from 2.1.3 to 2.1.6 - [Release notes](https://github.com/google-github-actions/auth/releases) - [Changelog](https://github.com/google-github-actions/auth/blob/main/CHANGELOG.md) - [Commits](google-github-actions/auth@v2.1.3...v2.1.6) Updates `google-github-actions/setup-gcloud` from 2.1.0 to 2.1.1 - [Release notes](https://github.com/google-github-actions/setup-gcloud/releases) - [Changelog](https://github.com/google-github-actions/setup-gcloud/blob/main/CHANGELOG.md) - [Commits](google-github-actions/setup-gcloud@v2.1.0...v2.1.1) Updates `actions/checkout` from 4.1.7 to 4.2.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.1.7...v4.2.1) Updates `super-linter/super-linter` from 6.7.0 to 7.1.0 - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](super-linter/super-linter@v6.7.0...v7.1.0) Updates `docker/setup-buildx-action` from 3.6.1 to 3.7.1 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3.6.1...v3.7.1) Updates `docker/build-push-action` from 6.5.0 to 6.9.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6.5.0...v6.9.0) Updates `google-github-actions/deploy-cloudrun` from 2.6.0 to 2.7.1 - [Release notes](https://github.com/google-github-actions/deploy-cloudrun/releases) - [Changelog](https://github.com/google-github-actions/deploy-cloudrun/blob/main/CHANGELOG.md) - [Commits](google-github-actions/deploy-cloudrun@v2.6.0...v2.7.1) --- updated-dependencies: - dependency-name: google-github-actions/auth dependency-type: direct:production update-type: version-update:semver-patch dependency-group: others - dependency-name: google-github-actions/setup-gcloud dependency-type: direct:production update-type: version-update:semver-patch dependency-group: others - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor dependency-group: others - dependency-name: super-linter/super-linter dependency-type: direct:production update-type: version-update:semver-major dependency-group: others - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: others - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: others - dependency-name: google-github-actions/deploy-cloudrun dependency-type: direct:production update-type: version-update:semver-minor dependency-group: others ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f7a7b6b commit 6f5a7de

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/chore-clean-dev.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020

2121
- name: Authenticate to Google Cloud
2222
id: auth
23-
uses: google-github-actions/[email protected].3
23+
uses: google-github-actions/[email protected].6
2424
with:
2525
workload_identity_provider: '${{ vars.GCP_WIF }}'
2626
project_id: '${{ vars.GCP_PROJECT }}'
2727

2828
- name: Set up Cloud SDK
29-
uses: google-github-actions/[email protected].0
29+
uses: google-github-actions/[email protected].1
3030

3131
- name: Removing CR service
3232
run: |

.github/workflows/ci-lint-codebase.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout Code Repository
36-
uses: actions/checkout@v4.1.7
36+
uses: actions/checkout@v4.2.1
3737
with:
3838
# Full git history is needed to get a proper
3939
# list of changed files within `super-linter`
4040
fetch-depth: 0
4141

4242
- name: Lint Code Base
43-
uses: super-linter/super-linter/slim@v6.7.0
43+
uses: super-linter/super-linter/slim@v7.1.0
4444
env:
4545
LOG_LEVEL: ERROR
4646
VALIDATE_ALL_CODEBASE: false

.github/workflows/sub-build-docker-image.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
contents: read
3737
id-token: write
3838
steps:
39-
- uses: actions/checkout@v4.1.7
39+
- uses: actions/checkout@v4.2.1
4040
with:
4141
persist-credentials: false
4242

@@ -70,11 +70,11 @@ jobs:
7070
# Setup Docker Buildx to allow use of docker cache layers from GH
7171
- name: Set up Docker Buildx
7272
id: buildx
73-
uses: docker/setup-buildx-action@v3.6.1
73+
uses: docker/setup-buildx-action@v3.7.1
7474

7575
- name: Authenticate to Google Cloud
7676
id: auth
77-
uses: google-github-actions/[email protected].3
77+
uses: google-github-actions/[email protected].6
7878
with:
7979
workload_identity_provider: '${{ vars.GCP_WIF }}'
8080
service_account: '${{ vars.GCP_ARTIFACTS_SA }}'
@@ -94,7 +94,7 @@ jobs:
9494
# Build and push image to Google Artifact Registry, and possibly DockerHub
9595
- name: Build & push
9696
id: docker_build
97-
uses: docker/build-push-action@v6.5.0
97+
uses: docker/build-push-action@v6.9.0
9898
with:
9999
target: ${{ inputs.dockerfile_target }}
100100
context: .

.github/workflows/sub-cloudrun-deploy.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -77,23 +77,23 @@ jobs:
7777
- name: Inject slug/short variables
7878
uses: rlespinasse/[email protected]
7979

80-
- uses: actions/checkout@v4.1.7
80+
- uses: actions/checkout@v4.2.1
8181
with:
8282
persist-credentials: false
8383

8484
- name: Authenticate to Google Cloud
8585
id: auth
86-
uses: google-github-actions/[email protected].3
86+
uses: google-github-actions/[email protected].6
8787
with:
8888
workload_identity_provider: '${{ vars.GCP_WIF }}'
8989
project_id: '${{ vars.GCP_PROJECT }}'
9090

9191
- name: Set up Cloud SDK
92-
uses: google-github-actions/[email protected].0
92+
uses: google-github-actions/[email protected].1
9393

9494
- name: Deploy to cloud run
9595
id: deploy
96-
uses: google-github-actions/deploy-cloudrun@v2.6.0
96+
uses: google-github-actions/deploy-cloudrun@v2.7.1
9797
with:
9898
service: ${{ inputs.app_name }}-${{ needs.versioning.outputs.version || env.GITHUB_HEAD_REF_SLUG || inputs.environment }}
9999
image: ${{ inputs.registry }}/${{ inputs.app_name }}@${{ inputs.image_digest }}

0 commit comments

Comments
 (0)