Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[v8](gha): Bump the dependencies group across 1 directory with 5 updates
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] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 8, 2025
commit 56bed61e429520fa76da23c14d713518c7bbb92d
2 changes: 1 addition & 1 deletion .github/workflows/check-cves.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Check out codebase
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Scan current project
id: scan
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/create-bosh-lite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:
sudo apt install -y build-essential unzip wamerican

- name: Checkout bosh-bootloader
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: cloudfoundry/bosh-bootloader
path: bosh-bootloader

- name: Checkout cli
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: cli

Expand Down Expand Up @@ -84,27 +84,27 @@ jobs:
bbl up

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

- name: Setup gcloud CLI
uses: google-github-actions/setup-gcloud@v2
uses: google-github-actions/setup-gcloud@v3

- name: Save bbl state
run: |
env_name=${{ steps.setup-bbl-env.outputs.envName }}
gsutil -m cp -R -P ./$env_name gs://cf-cli-bosh-lites/

- name: Checkout cf-deployment
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: cloudfoundry/cf-deployment
ref: release-candidate
path: cf-deployment

- name: Checkout bosh-deployment
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: cloudfoundry/bosh-deployment
path: bosh-deployment
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/delete-bosh-lite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,23 +46,23 @@ jobs:
sudo apt install -y build-essential unzip wamerican

- name: Checkout cli
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: cli

- name: Checkout bosh-bootloader
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: cloudfoundry/bosh-bootloader
path: bosh-bootloader

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

- name: Setup gcloud CLI
uses: google-github-actions/setup-gcloud@v2
uses: google-github-actions/setup-gcloud@v3

- name: Download file from GCS
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: '0'
- name: Set up Go 1.x
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version-file: go.mod
check-latest: true
Expand All @@ -43,11 +43,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: '0'
- name: Set Up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version-file: go.mod
check-latest: true
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/release-build-sign-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:

steps:
- name: Checkout cli
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Bump version
id: bump-version
Expand Down Expand Up @@ -127,10 +127,10 @@ jobs:
run: echo "VERSION_BUILD $VERSION_BUILD"

- name: Checkout cli
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Checkout cli-ci
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: cloudfoundry/cli-ci.git
path: cli-ci
Expand All @@ -139,7 +139,7 @@ jobs:
- name: Install Linux Packages
run: sudo apt update && sudo apt install -y --no-install-recommends fakeroot
- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version-file: go.mod

Expand Down Expand Up @@ -396,17 +396,17 @@ jobs:
run: echo "VERSION_BUILD $VERSION_BUILD"

- name: Checkout cli
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Checkout cli-ci
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: cloudfoundry/cli-ci.git
path: cli-ci
ref: main

- name: Checkout bomutils
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: hogliux/bomutils.git
ref: 0.2
Expand All @@ -417,7 +417,7 @@ jobs:
run: make

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version-file: go.mod

Expand Down Expand Up @@ -624,11 +624,11 @@ jobs:
VERSION_MAJOR: ${{ needs.setup.outputs.version-major }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version-file: go.mod

Expand Down Expand Up @@ -767,7 +767,7 @@ jobs:
steps:

- name: Checkout cli
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Download signed artifacts
uses: actions/download-artifact@v5
Expand Down Expand Up @@ -863,7 +863,7 @@ jobs:
path: signed/*

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

- name: Checkout CLI
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: ${{ env.REPO_DIR }}

Expand Down Expand Up @@ -1054,7 +1054,7 @@ jobs:
VERSION_BUILD: ${{ needs.setup.outputs.version-build }}
steps:
- name: Checkout CLAW
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: cloudfoundry/CLAW
ref: master
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release-update-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: echo "claw-url=https://packages.cloudfoundry.org" >> "${GITHUB_OUTPUT}"

- name: Checkout cli
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Parse semver
id: parse-semver
Expand Down Expand Up @@ -71,14 +71,14 @@ jobs:
steps:

- name: Checkout cli-ci
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: cloudfoundry/cli-ci.git
ref: main
path: cli-ci

- name: Checkout homebrew-tap
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: cloudfoundry/homebrew-tap
ref: master
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
echo "VERSION_BUILD: ${VERSION_BUILD}"

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- uses: ruby/setup-ruby@v1
with:
Expand Down Expand Up @@ -402,7 +402,7 @@ jobs:
&& pip3 install awscli

- name: Setup aws to upload installers to CLAW S3 bucket
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v5
with:
aws-access-key-id: ${{ vars.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down Expand Up @@ -484,7 +484,7 @@ jobs:
echo "VERSION_BUILD: ${VERSION_BUILD}"

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Calculate Checksums
run: |
Expand Down Expand Up @@ -585,7 +585,7 @@ jobs:
echo "Environment: ${ENVIRONMENT}"

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: cloudfoundry/cli
ref: ${{ github.ref_name }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests-integration-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout cli
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{inputs.gitRef}}
fetch-depth: 0
path: cli

- name: Checkout CF deployment tasks
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: cloudfoundry/cf-deployment-concourse-tasks
path: cf-deployment-concourse-tasks

- name: Set Up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version-file: cli/go.mod
check-latest: true
Expand Down Expand Up @@ -73,12 +73,12 @@ jobs:
sudo apt-get install -y build-essential unzip

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

- name: Setup gcloud CLI
uses: google-github-actions/setup-gcloud@v2
uses: google-github-actions/setup-gcloud@v3

- name: Download file from GCS
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:
- get-sha
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{needs.get-sha.outputs.gitRef}}
fetch-depth: 0
- name: Set Up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version-file: go.mod
check-latest: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Go Environment
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version-file: go.mod
check-latest: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/util-code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
Loading