diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fccf685d..2bb9c591 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -59,9 +59,6 @@ jobs: uses: docker/setup-buildx-action@v3 - name : Install helm run : ./.github/workflows/scripts/install-helm.sh - - name: Set K3s support output - id : support - run: ./.github/workflows/scripts/supported-versions.sh | awk '{print "k3sversions="$0}' >> $GITHUB_OUTPUT - name : CI run : make ci test: @@ -72,7 +69,10 @@ jobs: arch: - x64 - arm64 - K3S_VERSION : ${{ fromJSON(needs.build.outputs.k3sversions) }} + #FIXME: temporarily hardcoded + K3S_VERSION : + - v1.28.1-k3s1 + - v1.31.0-k3s1 steps: - name : Checkout repository uses : actions/checkout@v4