deps: update module github.com/hetznercloud/hcloud-go/v2 to v2.4.0 #701
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: Run e2e tests | |
on: | |
pull_request: {} | |
push: | |
branches: [main] | |
jobs: | |
k3s: | |
name: k3s ${{ matrix.k3s }} | |
permissions: | |
id-token: write | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
k3s: [ v1.25, v1.26, v1.27, v1.28 ] | |
fail-fast: false | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
- uses: actions/checkout@master | |
- uses: hetznercloud/tps-action@main | |
with: | |
token: ${{ secrets.HCLOUD_TOKEN }} | |
- uses: 3bit/setup-hcloud@v2 | |
- uses: yokawasa/[email protected] | |
with: | |
setup-tools: | | |
helm | |
kubectl | |
skaffold | |
helm: v3.11.2 | |
kubectl: v1.28.1 | |
skaffold: v2.3.0 | |
- name: Run tests | |
env: | |
K3S_CHANNEL: ${{ matrix.k3s }} | |
SCOPE: gha-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.k3s }} | |
# Domain must be available in the account running the tests. This domain is available in the account | |
# running the public integration tests. | |
CERT_DOMAIN: hc-integrations-test.de | |
run: | | |
curl -sLS https://get.k3sup.dev | sh | |
trap "hack/dev-down.sh" EXIT | |
source <(hack/dev-up.sh) | |
skaffold build --tag="e2e-${GITHUB_RUN_ID}-${GITHUB_RUN_NUMBER}" | |
tag=$(skaffold build --tag="e2e-${GITHUB_RUN_ID}-${GITHUB_RUN_NUMBER}" --quiet --output="{{ (index .Builds 0).Tag }}") | |
skaffold deploy --images=hetznercloud/hcloud-cloud-controller-manager=$tag | |
go test ./tests/e2e -v -timeout 60m |