move to building with Go 1.22.8 (#694) #840
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: Tests | |
# Run this workflow on pushes and manually | |
on: [push, workflow_dispatch] | |
jobs: | |
test: | |
env: | |
# vault-k8s version | |
VERSION: "0.0.0-dev" | |
TARBALL_FILE: vault-k8s-image.docker.tar | |
outputs: | |
version: ${{ env.VERSION }} | |
tarball_file: ${{ env.TARBALL_FILE }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version-file: .go-version | |
- name: Build | |
run: | | |
REGISTRY=hashicorp make build image | |
docker save --output "${TARBALL_FILE}" hashicorp/vault-k8s:${{ env.VERSION }} | |
- name: Test | |
run: make test | |
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
with: | |
name: ${{ env.TARBALL_FILE }} | |
path: ${{ env.TARBALL_FILE }} | |
versions: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "setting versions" | |
outputs: | |
# JSON encoded array of k8s versions. | |
K8S_VERSIONS: '["1.30.0", "1.29.4", "1.28.9", "1.27.13", "1.26.15"]' | |
VAULT_N: "1.17.2" | |
VAULT_N_1: "1.16.3" | |
VAULT_N_2: "1.15.6" | |
latest-vault: | |
name: vault:${{ matrix.vault-version }} kind:${{ matrix.k8s-version }} | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
- versions | |
strategy: | |
fail-fast: false | |
matrix: | |
vault-version: | |
- ${{ needs.versions.outputs.VAULT_N }} | |
k8s-version: ${{ fromJson(needs.versions.outputs.K8S_VERSIONS) }} | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- uses: ./.github/actions/integration-test | |
name: vault:${{ matrix.vault-version }} kind:${{ matrix.k8s-version }} | |
with: | |
k8s-version: ${{ matrix.k8s-version }} | |
vault-version: ${{ matrix.vault-version }} | |
tarball-file: ${{ needs.test.outputs.tarball_file }} | |
version: ${{ needs.test.outputs.version }} | |
vault-license: ${{ secrets.VAULT_LICENSE_CI }} | |
latest-k8s: | |
name: vault:${{ matrix.vault-version }} kind:${{ matrix.k8s-version }} | |
needs: | |
- versions | |
- test | |
strategy: | |
fail-fast: false | |
matrix: | |
k8s-version: | |
- ${{ fromJson(needs.versions.outputs.K8S_VERSIONS)[0] }} | |
vault-version: | |
- ${{ needs.versions.outputs.VAULT_N_1 }} | |
- ${{ needs.versions.outputs.VAULT_N_2 }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- uses: ./.github/actions/integration-test | |
name: vault:${{ matrix.vault-version }} kind:${{ matrix.k8s-version }} | |
with: | |
k8s-version: ${{ matrix.k8s-version }} | |
vault-version: ${{ matrix.vault-version }} | |
tarball-file: ${{ needs.test.outputs.tarball_file }} | |
version: ${{ needs.test.outputs.version }} | |
vault-license: ${{ secrets.VAULT_LICENSE_CI }} |