Skip to content

Commit 3abd51d

Browse files
[main](gha): Bump the dependencies group across 1 directory with 3 updates
Bumps the dependencies group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [google-github-actions/auth](https://github.com/google-github-actions/auth) and [google-github-actions/setup-gcloud](https://github.com/google-github-actions/setup-gcloud). 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) --- 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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 741574f commit 3abd51d

10 files changed

Lines changed: 35 additions & 35 deletions

.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ 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
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646
with:
4747
fetch-depth: '0'
4848
- name: Set Up Go

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

Lines changed: 10 additions & 10 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
@@ -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
@@ -625,7 +625,7 @@ jobs:
625625
VERSION_MAJOR: ${{ needs.setup.outputs.version-major }}
626626
steps:
627627
- name: Checkout
628-
uses: actions/checkout@v4
628+
uses: actions/checkout@v5
629629
with:
630630
fetch-depth: 0
631631
- name: Set up Go
@@ -768,7 +768,7 @@ jobs:
768768
steps:
769769

770770
- name: Checkout cli
771-
uses: actions/checkout@v4
771+
uses: actions/checkout@v5
772772

773773
- name: Download signed artifacts
774774
uses: actions/download-artifact@v5
@@ -1019,7 +1019,7 @@ jobs:
10191019
path: ${{ env.ARTIFACTS_DIR }}
10201020

10211021
- name: Checkout CLI
1022-
uses: actions/checkout@v4
1022+
uses: actions/checkout@v5
10231023
with:
10241024
path: ${{ env.REPO_DIR }}
10251025

@@ -1059,7 +1059,7 @@ jobs:
10591059
VERSION_BUILD: ${{ needs.setup.outputs.version-build }}
10601060
steps:
10611061
- name: Checkout CLAW
1062-
uses: actions/checkout@v4
1062+
uses: actions/checkout@v5
10631063
with:
10641064
repository: cloudfoundry/CLAW
10651065
ref: master

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

Lines changed: 5 additions & 5 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:
@@ -488,7 +488,7 @@ jobs:
488488
echo "VERSION_BUILD: ${VERSION_BUILD}"
489489
490490
- name: Checkout
491-
uses: actions/checkout@v4
491+
uses: actions/checkout@v5
492492

493493
- name: Calculate Checksums
494494
run: |

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ 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
@@ -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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- get-sha
5959
steps:
6060
- name: Checkout
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262
with:
6363
ref: ${{needs.get-sha.outputs.gitRef}}
6464
fetch-depth: 0

.github/workflows/tests-unit.yml

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

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

5050
- name: Setup Go Environment
5151
uses: actions/setup-go@v5

.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)