Skip to content

Commit

Permalink
Bump actions/checkout from 2 to 4 (#2632)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Nov 6, 2023
1 parent 93670c8 commit f11f67e
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release-build-sign-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
run: echo "::set-output name=secrets-environment::PROD"

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

- name: Check if VERSION_BUILD matches tag ${{ github.ref }}
run: |
Expand Down Expand Up @@ -155,10 +155,10 @@ jobs:
run: echo "VERSION_BUILD $VERSION_BUILD"

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

- name: Checkout cli-ci
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: cloudfoundry/cli-ci.git
path: cli-ci
Expand Down Expand Up @@ -428,17 +428,17 @@ jobs:
run: echo "VERSION_BUILD $VERSION_BUILD"

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

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

- name: Checkout bomutils
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: hogliux/bomutils.git
ref: 0.2
Expand Down Expand Up @@ -655,7 +655,7 @@ jobs:
VERSION_MAJOR: ${{ needs.setup.outputs.version-major }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
Expand Down Expand Up @@ -801,7 +801,7 @@ jobs:
steps:

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

- name: get semver version
# set environment var for subsequent steps. see: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-environment-variable
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-update-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: echo "::set-output name=claw-url::https://packages.cloudfoundry.org"

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

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

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

- name: Checkout homebrew-tap
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: cloudfoundry/homebrew-tap
ref: master
Expand Down Expand Up @@ -256,9 +256,9 @@ jobs:
echo "Environment: ${ENVIRONMENT}"
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
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 @@ -43,12 +43,12 @@ jobs:
output: |
{"title": "${{ inputs.name }}", "summary":"started ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"}
- name: Checkout cli
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{github.event.workflow_run.head_sha}}

- name: Checkout cli-ci
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: cloudfoundry/cli-ci
path: cli-ci
Expand All @@ -61,21 +61,21 @@ jobs:
- name: Checkout cf-deployment Min CAPI
if: ${{ inputs.capi-version != 'edge' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: cloudfoundry/cf-deployment
path: cf-deployment
ref: ${{ steps.read-min-capi.outputs.version }}

- name: Checkout cf-deployment
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.capi-version == 'edge' }}
with:
repository: cloudfoundry/cf-deployment
path: cf-deployment

- name: Checkout CF deployment tasks
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: cloudfoundry/cf-deployment-concourse-tasks
path: cf-deployment-concourse-tasks
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
steps:

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

- name: Set Up Go
uses: actions/setup-go@v4
Expand All @@ -57,7 +57,7 @@ jobs:
steps:

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

- name: Set Up Go
uses: actions/setup-go@v4
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
steps:

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

- name: Set Up Go
uses: actions/setup-go@v4
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 @@ -23,7 +23,7 @@ jobs:
steps:

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

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

0 comments on commit f11f67e

Please sign in to comment.