Update go 1.20.10 and x/net 0.17.0 in line 0.13.x #934
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: test-gh | |
"on": | |
push: | |
branches: | |
- develop | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
pull_request: | |
types: [opened, reopened, synchronize] | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
jobs: | |
test-all: | |
name: Test GH | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.10 | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install Carvel Tools | |
uses: vmware-tanzu/carvel-setup-action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
only: ytt, kapp, kbld | |
ytt: v0.45.4 | |
kapp: v0.58.0 | |
kbld: v0.37.5 | |
- name: Run Tests | |
run: | | |
set -e -x | |
mkdir /tmp/bin | |
export PATH=/tmp/bin:$PATH | |
./hack/verify-no-dirty-files.sh | |
minikube start --driver=docker | |
eval $(minikube docker-env --shell=bash) | |
export SECRETGEN_E2E_NAMESPACE=secretgen-test | |
./hack/test-all.sh |