Skip to content

build(deps): bump golang.org/x/net from 0.24.0 to 0.25.0 #1728

build(deps): bump golang.org/x/net from 0.24.0 to 0.25.0

build(deps): bump golang.org/x/net from 0.24.0 to 0.25.0 #1728

Workflow file for this run

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
name: Go test
outputs:
pr_number: ${{ github.event.number }}
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.22.2'
- uses: actions/checkout@v4
- run: make test
call-dependabot-pr-workflow:
needs: test
if: ${{ success() && github.actor == 'dependabot[bot]' }}
uses: cloudfoundry/cloud-service-broker/.github/workflows/dependabot-test.yml@main
with:
pr_number: ${{ github.event.number }}