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
4 changes: 2 additions & 2 deletions .github/workflows/bump_bbs_protos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
steps:
- uses: hmarr/debug-action@v3
- name: Checkout ccng
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: cloud_controller_ng

- name: Clone bbs repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: cloudfoundry/bbs
path: bbs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

# Add any setup steps before running the `github/codeql-action/init` action.
# This includes steps like installing compilers or runtimes (`actions/setup-node`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
timeout-minutes: 60
steps:
- uses: hmarr/debug-action@v3
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Prepare setup
run: cp -a .ruby-version docs/v3/.ruby-version
- uses: ./.github/workflows/composite/setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gem_freshness_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v3
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/workflows/composite/setup

- name: Generate report
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v3
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/workflows/composite/setup
- name: Run Rubocop
run: bundle exec rake rubocop
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
- 5432:5432
steps:
- uses: hmarr/debug-action@v3
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/workflows/composite/setup
- name: Restore parallel_rspec runtime logs
uses: actions/cache/restore@v5
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- 3306:3306
steps:
- uses: hmarr/debug-action@v3
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/workflows/composite/setup
- name: Restore parallel_rspec runtime logs
uses: actions/cache/restore@v5
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/unit_tests_backwards_compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
steps:
- uses: hmarr/debug-action@v3
- name: Checkout code to run the db migration with
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ (
github.event_name == 'workflow_dispatch'
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Migrate Database
run: DB=postgres POSTGRES_CONNECTION_PREFIX="postgres://postgres:rootpassword@localhost:5432" bundle exec rake db:parallel:recreate db:parallel:migrate
- name: Checkout code to run the unit tests with
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ (
github.event_name == 'workflow_dispatch'
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
steps:
- uses: hmarr/debug-action@v3
- name: Checkout code to run the db migration with
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ (
github.event_name == 'workflow_dispatch'
Expand All @@ -121,7 +121,7 @@ jobs:
- name: Migrate Database
run: DB=mysql MYSQL_CONNECTION_PREFIX="mysql2://root:password@127.0.0.1:3306" bundle exec rake db:parallel:recreate db:parallel:migrate
- name: Checkout code to run the unit tests with
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ (
github.event_name == 'workflow_dispatch'
Expand Down
Loading