update go and golang.org/x/net (#264) #279
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 | |
on: [push, workflow_dispatch] | |
env: | |
KIND_VERSION: "v0.22.0" | |
BATS_VERSION: "1.11.0" | |
NODE_VERSION: "19.8.1" | |
TARBALL_FILE: vault-csi-provider.docker.tar | |
jobs: | |
versions: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "setting versions" | |
outputs: | |
K8S_VERSIONS: '["1.29.2", "1.28.7", "1.27.11", "1.26.14", "1.25.16"]' | |
VAULT_N: "1.15.6" | |
VAULT_N_1: "1.14.10" | |
VAULT_N_2: "1.13.13" | |
copyright: | |
uses: hashicorp/vault-workflows-common/.github/workflows/copyright-headers.yaml@main | |
go-checks: | |
uses: hashicorp/vault-workflows-common/.github/workflows/go-checks.yaml@main | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version-file: .go-version | |
- name: Install tools | |
run: make bootstrap | |
- name: Lint | |
run: make lint GOLANGCI_LINT_FORMAT=github-actions | |
build-and-test: | |
runs-on: ubuntu-latest | |
outputs: | |
TARBALL_FILE: ${{ env.TARBALL_FILE }} | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version-file: .go-version | |
- name: Build | |
run: | | |
make e2e-image | |
docker save --output "${TARBALL_FILE}" e2e/vault-csi-provider:latest | |
- name: Test | |
run: make test | |
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | |
with: | |
name: vault-csi-provider-image | |
path: ${{ env.TARBALL_FILE }} | |
latest-vault: | |
name: vault:${{ matrix.vault-version }} kind:${{ matrix.k8s-version }} | |
runs-on: ubuntu-latest | |
needs: | |
- versions | |
- lint | |
- build-and-test | |
strategy: | |
fail-fast: false | |
matrix: | |
vault-version: | |
- ${{ needs.versions.outputs.VAULT_N }} | |
k8s-version: ${{ fromJson(needs.versions.outputs.K8S_VERSIONS) }} | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- 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.build-and-test.outputs.TARBALL_FILE }} | |
vault-license: ${{ secrets.VAULT_LICENSE_CI }} | |
latest-k8s: | |
name: vault:${{ matrix.vault-version }} kind:${{ matrix.k8s-version }} | |
needs: | |
- versions | |
- lint | |
- build-and-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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- 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.build-and-test.outputs.TARBALL_FILE }} | |
vault-license: ${{ secrets.VAULT_LICENSE_CI }} |