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

chore(deps): update actions/checkout action to v4 #2115

Merged
merged 1 commit into from
Sep 5, 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
2 changes: 1 addition & 1 deletion .github/actions/setup-environment/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ runs:
using: "composite"
steps:
- name: clone BBL repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: cloudfoundry/app-autoscaler-env-bbl-state
ssh-key: ${{ inputs.ssh-key }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/acceptance_tests_broker_close.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
container:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: app-autoscaler-release
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/acceptance_tests_buildin_close.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
container:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: app-autoscaler-release
ref: main
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/acceptance_tests_reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
checks: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: app-autoscaler-release
- name: Create pending check
Expand All @@ -79,7 +79,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: app-autoscaler-release
- name: Setup environment for deployment
Expand All @@ -103,7 +103,7 @@ jobs:
name: "[ ${{ matrix.suite }} ] ${{ github.workflow }}"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: app-autoscaler-release
- name: Setup environment for acceptance tests
Expand All @@ -130,7 +130,7 @@ jobs:
checks: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: app-autoscaler-release
- name: Verify jobs execution
Expand All @@ -148,7 +148,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: app-autoscaler-release
- name: Setup environment for deployment cleanup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bosh-release-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Trust my checkout
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"

- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: sync-package-specs
run: make package-specs

Expand All @@ -41,7 +41,7 @@ jobs:
- name: Trust my checkout
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"

- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Update
run: |
set -e
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bosh-templates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
# Learn more about CodeQL language support at https://git.io/codeql-language-support
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-spec-updates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main
if: contains(fromJson('["dependabot[bot]", "renovate[bot]"]'), github.event.pull_request.user.login) && contains(github.event.pull_request.labels.*.name, 'dependencies')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: package-specs
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
name: Build and Push app-autoscaler-ci-${{ matrix.image_suffix }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/login-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java-ci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
container:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Check Code Formatting
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Trust my checkout
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run Tests - Manifest
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mysql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Trust my checkout
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"

- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: make build
run: |
make build db_type=mysql
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openapi-specs-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main
steps:
- name: Get Repository content
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Validating OpenAPI Specifications
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Trust my checkout
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"

- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: make build
env:
POSTGRES_HOST: postgres
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tidy-go-mod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
container:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Trust my checkout
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"
Expand Down
Loading