Skip to content

Commit baac19e

Browse files
[main](gha): Bump the dependencies group across 1 directory with 6 updates
Bumps the dependencies group with 6 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` | | [actions/stale](https://github.com/actions/stale) | `9` | `10` | 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) Updates `actions/stale` from 9 to 10 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v9...v10) --- 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 - dependency-name: actions/stale dependency-version: '10' 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 baac19e

11 files changed

Lines changed: 46 additions & 46 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: 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
- name: golangci-lint
@@ -42,11 +42,11 @@ 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
49-
uses: actions/setup-go@v5
49+
uses: actions/setup-go@v6
5050
with:
5151
go-version-file: go.mod
5252
- name: Run go fmt

.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

@@ -625,11 +625,11 @@ 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
632-
uses: actions/setup-go@v5
632+
uses: actions/setup-go@v6
633633
with:
634634
go-version-file: go.mod
635635

@@ -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
@@ -864,7 +864,7 @@ jobs:
864864
path: signed/*
865865

866866
- name: Setup aws to upload installers to CLAW S3 bucket
867-
uses: aws-actions/configure-aws-credentials@v4
867+
uses: aws-actions/configure-aws-credentials@v5
868868
env:
869869
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
870870
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -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: 6 additions & 6 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
env:
407407
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
408408
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -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/stale-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
actions: write
1616

1717
steps:
18-
- uses: actions/stale@v9
18+
- uses: actions/stale@v10
1919
with:
2020
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed.'
2121
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed.'

.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
@@ -58,12 +58,12 @@ 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
6565
- name: Set Up Go
66-
uses: actions/setup-go@v5
66+
uses: actions/setup-go@v6
6767
with:
6868
go-version-file: go.mod
6969
- name: Run Units

.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
cache: true

0 commit comments

Comments
 (0)