Bump golang.org/x/net from 0.27.0 to 0.28.0 #48
Workflow file for this run
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: Consuming Projects | |
on: | |
pull_request: | |
permissions: {} | |
jobs: | |
unit-testing: | |
name: Check subctl | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the submariner-operator repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
with: | |
path: submariner-operator | |
- name: Check out the subctl repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
with: | |
repository: submariner-io/subctl | |
path: subctl | |
ref: ${{ github.base_ref }} | |
- name: Check out the shipyard repository | |
# This is required so that we can run a build involving multiple | |
# repositories (using LOCAL_BUILD=1) | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
with: | |
repository: submariner-io/shipyard | |
path: shipyard | |
ref: ${{ github.base_ref }} | |
- name: Set up Go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 | |
with: | |
go-version: '1.22' | |
check-latest: true | |
- name: Update the subctl build to use the current submariner-operator | |
run: | | |
cd subctl | |
go mod edit -replace=github.com/submariner-io/submariner-operator=../submariner-operator | |
go mod tidy | |
- name: Run Go subctl unit tests | |
run: make -C subctl LOCAL_BUILD=1 unit |