Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Nov 6, 2023
1 parent c62f981 commit 61037d9
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 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 "secrets-environment=PROD" >> "${GITHUB_OUTPUT}"

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

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

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

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

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

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

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

- name: Checkout cli
uses: actions/checkout@v3
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
8 changes: 4 additions & 4 deletions .github/workflows/release-update-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: echo "claw-url=https://packages.cloudfoundry.org" >> "${GITHUB_OUTPUT}"

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

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

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

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

- uses: ruby/setup-ruby@v1
with:
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 61037d9

Please sign in to comment.