Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3 to 4 #2633

Merged
merged 1 commit into from
Nov 6, 2023
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
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