chore(deps): update all non-major dependencies #4391
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: Upgrade Testing | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- '**.svg' | |
- '**.drawio' | |
- '.spelling' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- '**.md' | |
- '**.svg' | |
- '**.drawio' | |
- '.spelling' | |
permissions: | |
contents: read | |
concurrency: terratest-${{ github.head_ref || github.run_id }} | |
jobs: | |
skip-check: | |
runs-on: ubuntu-latest | |
name: Skip the job? | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@6dacdfc16caa5ebd987908a44ab5b425193385f6 | |
with: | |
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@fc7bbd5283bce15e0594f80a57e0d4ca070b4b4b | |
with: | |
skip_after_successful_duplicate: 'true' | |
do_not_skip: '["workflow_dispatch", "schedule"]' | |
upgrade-testing: | |
runs-on: ubuntu-20.04 | |
needs: skip-check | |
if: ${{ needs.skip-check.outputs.should_skip != 'true' }} | |
steps: | |
- uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@08b314a5730da00e95d0394603ed798406886596 | |
with: | |
go-version: 1.19.1 | |
- name: Build artifacts | |
uses: goreleaser/goreleaser-action@920a7cbd0a5ce2fa16b0e4182e327d6a7761d677 | |
with: | |
version: v1.9.2 | |
args: release --rm-dist --skip-publish --skip-validate --snapshot --skip-sbom --skip-sign | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create edgeDNS k3s Cluster | |
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 | |
with: | |
cluster-name: "edgedns" | |
args: -c k3d/edge-dns.yaml | |
- name: Create 1st k3s Cluster | |
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 | |
with: | |
cluster-name: "test-gslb1" | |
args: -c k3d/test-gslb1.yaml | |
- name: Create 2nd k3s Cluster | |
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 | |
with: | |
cluster-name: "test-gslb2" | |
args: -c k3d/test-gslb2.yaml | |
- name: K8GB deploy stable version | |
run: make deploy-stable-version list-running-pods | |
- name: K8GB deploy test version | |
run: make deploy-test-version list-running-pods | |
- name: Run Terratest | |
run: | | |
mkdir -p ${{ github.workspace }}/tmp/terratest | |
set -o pipefail | |
make terratest | tee ${{ github.workspace }}/tmp/terratest/all.log | |
echo "::endgroup::" | |
- name: Print debug info | |
if: always() | |
uses: ./.github/actions/print-debug | |
- uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05 | |
if: always() | |
with: | |
name: terratest-logs | |
path: ${{ github.workspace }}/tmp/terratest |