Skip to content

Commit e8ec5d5

Browse files
[v8](gha): Bump the dependencies group across 1 directory with 5 updates (#3571)
Bumps the dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [google-github-actions/auth](https://github.com/google-github-actions/auth) | `2` | `3` | | [google-github-actions/setup-gcloud](https://github.com/google-github-actions/setup-gcloud) | `2` | `3` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) | `4` | `5` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `google-github-actions/auth` from 2 to 3 - [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...v3) Updates `google-github-actions/setup-gcloud` from 2 to 3 - [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...v3) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) Updates `aws-actions/configure-aws-credentials` from 4 to 5 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](aws-actions/configure-aws-credentials@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: google-github-actions/auth dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: google-github-actions/setup-gcloud dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: aws-actions/configure-aws-credentials dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1f2a431 commit e8ec5d5

10 files changed

+46
-46
lines changed

.github/workflows/check-cves.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- name: Check out codebase
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: Scan current project
1616
id: scan

.github/workflows/create-bosh-lite.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ jobs:
4646
sudo apt install -y build-essential unzip wamerican
4747

4848
- name: Checkout bosh-bootloader
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050
with:
5151
repository: cloudfoundry/bosh-bootloader
5252
path: bosh-bootloader
5353

5454
- name: Checkout cli
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
with:
5757
path: cli
5858

@@ -84,27 +84,27 @@ jobs:
8484
bbl up
8585
8686
- name: Authenticate to Google Cloud
87-
uses: google-github-actions/auth@v2
87+
uses: google-github-actions/auth@v3
8888
with:
8989
credentials_json: ${{ secrets.GCP_CREDENTIALS_JSON }}
9090

9191
- name: Setup gcloud CLI
92-
uses: google-github-actions/setup-gcloud@v2
92+
uses: google-github-actions/setup-gcloud@v3
9393

9494
- name: Save bbl state
9595
run: |
9696
env_name=${{ steps.setup-bbl-env.outputs.envName }}
9797
gsutil -m cp -R -P ./$env_name gs://cf-cli-bosh-lites/
9898
9999
- name: Checkout cf-deployment
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101
with:
102102
repository: cloudfoundry/cf-deployment
103103
ref: release-candidate
104104
path: cf-deployment
105105

106106
- name: Checkout bosh-deployment
107-
uses: actions/checkout@v4
107+
uses: actions/checkout@v5
108108
with:
109109
repository: cloudfoundry/bosh-deployment
110110
path: bosh-deployment

.github/workflows/delete-bosh-lite.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,23 +46,23 @@ jobs:
4646
sudo apt install -y build-essential unzip wamerican
4747

4848
- name: Checkout cli
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050
with:
5151
path: cli
5252

5353
- name: Checkout bosh-bootloader
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
with:
5656
repository: cloudfoundry/bosh-bootloader
5757
path: bosh-bootloader
5858

5959
- name: Authenticate to Google Cloud
60-
uses: google-github-actions/auth@v2
60+
uses: google-github-actions/auth@v3
6161
with:
6262
credentials_json: ${{ secrets.GCP_CREDENTIALS_JSON }}
6363

6464
- name: Setup gcloud CLI
65-
uses: google-github-actions/setup-gcloud@v2
65+
uses: google-github-actions/setup-gcloud@v3
6666

6767
- name: Download file from GCS
6868
run: |

.github/workflows/golangci-lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
name: lint
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
with:
3030
fetch-depth: '0'
3131
- name: Set up Go 1.x
32-
uses: actions/setup-go@v5
32+
uses: actions/setup-go@v6
3333
with:
3434
go-version-file: go.mod
3535
check-latest: true
@@ -43,11 +43,11 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747
with:
4848
fetch-depth: '0'
4949
- name: Set Up Go
50-
uses: actions/setup-go@v5
50+
uses: actions/setup-go@v6
5151
with:
5252
go-version-file: go.mod
5353
check-latest: true

.github/workflows/release-build-sign-upload.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171

7272
steps:
7373
- name: Checkout cli
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@v5
7575

7676
- name: Bump version
7777
id: bump-version
@@ -127,10 +127,10 @@ jobs:
127127
run: echo "VERSION_BUILD $VERSION_BUILD"
128128

129129
- name: Checkout cli
130-
uses: actions/checkout@v4
130+
uses: actions/checkout@v5
131131

132132
- name: Checkout cli-ci
133-
uses: actions/checkout@v4
133+
uses: actions/checkout@v5
134134
with:
135135
repository: cloudfoundry/cli-ci.git
136136
path: cli-ci
@@ -139,7 +139,7 @@ jobs:
139139
- name: Install Linux Packages
140140
run: sudo apt update && sudo apt install -y --no-install-recommends fakeroot
141141
- name: Set up Go
142-
uses: actions/setup-go@v5
142+
uses: actions/setup-go@v6
143143
with:
144144
go-version-file: go.mod
145145

@@ -396,17 +396,17 @@ jobs:
396396
run: echo "VERSION_BUILD $VERSION_BUILD"
397397

398398
- name: Checkout cli
399-
uses: actions/checkout@v4
399+
uses: actions/checkout@v5
400400

401401
- name: Checkout cli-ci
402-
uses: actions/checkout@v4
402+
uses: actions/checkout@v5
403403
with:
404404
repository: cloudfoundry/cli-ci.git
405405
path: cli-ci
406406
ref: main
407407

408408
- name: Checkout bomutils
409-
uses: actions/checkout@v4
409+
uses: actions/checkout@v5
410410
with:
411411
repository: hogliux/bomutils.git
412412
ref: 0.2
@@ -417,7 +417,7 @@ jobs:
417417
run: make
418418

419419
- name: Set up Go
420-
uses: actions/setup-go@v5
420+
uses: actions/setup-go@v6
421421
with:
422422
go-version-file: go.mod
423423

@@ -624,11 +624,11 @@ jobs:
624624
VERSION_MAJOR: ${{ needs.setup.outputs.version-major }}
625625
steps:
626626
- name: Checkout
627-
uses: actions/checkout@v4
627+
uses: actions/checkout@v5
628628
with:
629629
fetch-depth: 0
630630
- name: Set up Go
631-
uses: actions/setup-go@v5
631+
uses: actions/setup-go@v6
632632
with:
633633
go-version-file: go.mod
634634

@@ -767,7 +767,7 @@ jobs:
767767
steps:
768768

769769
- name: Checkout cli
770-
uses: actions/checkout@v4
770+
uses: actions/checkout@v5
771771

772772
- name: Download signed artifacts
773773
uses: actions/download-artifact@v5
@@ -863,7 +863,7 @@ jobs:
863863
path: signed/*
864864

865865
- name: Setup aws to upload installers to CLAW S3 bucket
866-
uses: aws-actions/configure-aws-credentials@v4
866+
uses: aws-actions/configure-aws-credentials@v5
867867
with:
868868
aws-access-key-id: ${{ vars.AWS_ACCESS_KEY_ID }}
869869
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -1014,7 +1014,7 @@ jobs:
10141014
path: ${{ env.ARTIFACTS_DIR }}
10151015

10161016
- name: Checkout CLI
1017-
uses: actions/checkout@v4
1017+
uses: actions/checkout@v5
10181018
with:
10191019
path: ${{ env.REPO_DIR }}
10201020

@@ -1054,7 +1054,7 @@ jobs:
10541054
VERSION_BUILD: ${{ needs.setup.outputs.version-build }}
10551055
steps:
10561056
- name: Checkout CLAW
1057-
uses: actions/checkout@v4
1057+
uses: actions/checkout@v5
10581058
with:
10591059
repository: cloudfoundry/CLAW
10601060
ref: master

.github/workflows/release-update-repos.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: echo "claw-url=https://packages.cloudfoundry.org" >> "${GITHUB_OUTPUT}"
3131

3232
- name: Checkout cli
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434

3535
- name: Parse semver
3636
id: parse-semver
@@ -71,14 +71,14 @@ jobs:
7171
steps:
7272

7373
- name: Checkout cli-ci
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@v5
7575
with:
7676
repository: cloudfoundry/cli-ci.git
7777
ref: main
7878
path: cli-ci
7979

8080
- name: Checkout homebrew-tap
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v5
8282
with:
8383
repository: cloudfoundry/homebrew-tap
8484
ref: master
@@ -246,7 +246,7 @@ jobs:
246246
echo "VERSION_BUILD: ${VERSION_BUILD}"
247247
248248
- name: Checkout
249-
uses: actions/checkout@v4
249+
uses: actions/checkout@v5
250250

251251
- uses: ruby/setup-ruby@v1
252252
with:
@@ -402,7 +402,7 @@ jobs:
402402
&& pip3 install awscli
403403
404404
- name: Setup aws to upload installers to CLAW S3 bucket
405-
uses: aws-actions/configure-aws-credentials@v4
405+
uses: aws-actions/configure-aws-credentials@v5
406406
with:
407407
aws-access-key-id: ${{ vars.AWS_ACCESS_KEY_ID }}
408408
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -484,7 +484,7 @@ jobs:
484484
echo "VERSION_BUILD: ${VERSION_BUILD}"
485485
486486
- name: Checkout
487-
uses: actions/checkout@v4
487+
uses: actions/checkout@v5
488488

489489
- name: Calculate Checksums
490490
run: |
@@ -585,7 +585,7 @@ jobs:
585585
echo "Environment: ${ENVIRONMENT}"
586586
587587
- name: Checkout
588-
uses: actions/checkout@v4
588+
uses: actions/checkout@v5
589589
with:
590590
repository: cloudfoundry/cli
591591
ref: ${{ github.ref_name }}

.github/workflows/tests-integration-reusable.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout cli
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
ref: ${{inputs.gitRef}}
3838
fetch-depth: 0
3939
path: cli
4040

4141
- name: Checkout CF deployment tasks
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
with:
4444
repository: cloudfoundry/cf-deployment-concourse-tasks
4545
path: cf-deployment-concourse-tasks
4646

4747
- name: Set Up Go
48-
uses: actions/setup-go@v5
48+
uses: actions/setup-go@v6
4949
with:
5050
go-version-file: cli/go.mod
5151
check-latest: true
@@ -73,12 +73,12 @@ jobs:
7373
sudo apt-get install -y build-essential unzip
7474
7575
- name: Authenticate to Google Cloud
76-
uses: google-github-actions/auth@v2
76+
uses: google-github-actions/auth@v3
7777
with:
7878
credentials_json: ${{ secrets.GCP_CREDENTIALS_JSON }}
7979

8080
- name: Setup gcloud CLI
81-
uses: google-github-actions/setup-gcloud@v2
81+
uses: google-github-actions/setup-gcloud@v3
8282

8383
- name: Download file from GCS
8484
run: |

.github/workflows/tests-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ jobs:
5656
- get-sha
5757
steps:
5858
- name: Checkout
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060
with:
6161
ref: ${{needs.get-sha.outputs.gitRef}}
6262
fetch-depth: 0
6363
- name: Set Up Go
64-
uses: actions/setup-go@v5
64+
uses: actions/setup-go@v6
6565
with:
6666
go-version-file: go.mod
6767
check-latest: true

.github/workflows/tests-unit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ jobs:
4545

4646
steps:
4747
- name: Checkout Repository
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v5
4949

5050
- name: Setup Go Environment
51-
uses: actions/setup-go@v5
51+
uses: actions/setup-go@v6
5252
with:
5353
go-version-file: go.mod
5454
check-latest: true

.github/workflows/util-code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323

2424
- name: Checkout repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Initialize CodeQL
2828
uses: github/codeql-action/init@v3

0 commit comments

Comments
 (0)