Bump golang.org/x/net from 0.10.0 to 0.23.0 in the go_modules group across 1 directory #32
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: Minimal Jalapeno Spinup | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
Kill-XRD: | |
runs-on: self-hosted | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Kill XRD testbed | |
run: | | |
cd ${{ github.workspace }}/build/tools/xrd | |
docker-compose down | |
Clear-A-Cluster: | |
runs-on: self-hosted | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Spin it down | |
run: | | |
cd ${{ github.workspace }}/install | |
./destroy_minimal_jalapeno.sh microk8s.kubectl | |
Run-A-Cluster: | |
needs: Clear-A-Cluster | |
runs-on: self-hosted | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Spin it up | |
run: | | |
cd ${{ github.workspace }}/install | |
./deploy_minimal_jalapeno.sh microk8s.kubectl | |
- name: Make sure it's up | |
run: | | |
cd ${{ github.workspace }}/build/tools | |
./cluster_up.sh microk8s.kubectl |