Bump github.com/pivotal-cf/on-demand-services-sdk from 0.47.1-0.20250113122426-f14762de8735 to 0.48.0 #579
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run-tests | |
on: | |
workflow_call: | |
outputs: | |
pr_number: | |
description: "The PR number" | |
value: ${{ jobs.test.outputs.pr_number }} | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: [stable] | |
name: Go ${{ matrix.version }} | |
outputs: | |
pr_number: ${{ github.event.number }} | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.version }} | |
- uses: actions/checkout@v4 | |
- run: ./scripts/run-unit-tests.sh | |
call-dependabot-pr-workflow: | |
needs: test | |
if: ${{ success() && github.actor == 'dependabot[bot]' }} | |
uses: pivotal-cf/brokerapi/.github/workflows/dependabot-test.yml@main | |
with: | |
pr_number: ${{ github.event.number }} |