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@v5
uses: actions/checkout@v6
with:
path: cloud_controller_ng

- name: Clone bbs repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: cloudfoundry/bbs
path: bbs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bump_bundler_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
pull-requests: write
steps:
- uses: hmarr/debug-action@v3
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/workflows/composite/setup
- name: Update BUNDLED WITH in Gemfile.lock
run: |
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@v5
uses: actions/checkout@v6

# 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@v5
- uses: actions/checkout@v6
- name: Prepare setup
run: cp -a .ruby-version docs/v3/.ruby-version
- uses: ./.github/workflows/composite/setup
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 @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v3
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/workflows/composite/setup
- name: Run Rubocop
run: bundle exec rake rubocop
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- 5432:5432
steps:
- uses: hmarr/debug-action@v3
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/workflows/composite/setup
- name: Run tests
run: DB=postgres POSTGRES_CONNECTION_PREFIX="postgres://postgres:rootpassword@localhost:5432" bundle exec rake spec
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- 3306:3306
steps:
- uses: hmarr/debug-action@v3
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/workflows/composite/setup
- name: Run tests
run: DB=mysql MYSQL_CONNECTION_PREFIX="mysql2://root:password@127.0.0.1:3306" bundle exec rake spec
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@v5
uses: actions/checkout@v6
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@v5
uses: actions/checkout@v6
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@v5
uses: actions/checkout@v6
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@v5
uses: actions/checkout@v6
with:
ref: ${{ (
github.event_name == 'workflow_dispatch'
Expand Down