tailscale-relay: bumped to v1.46.1 (#77) #213
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
--- | |
on: | |
pull_request: | |
push: | |
jobs: | |
helm: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20.4' | |
- name: Set up Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.12.0 | |
- name: Configure dependencies repositories | |
run: | | |
make configure-deps-repos | |
- name: Run chart-testing (lint) | |
run: make lint | |
# - name: Create kind cluster | |
# uses: helm/kind-action@v1.2.0 | |
# if: steps.list-changed.outputs.changed == 'true' | |
# - name: Test installing the charts | |
# run: make test | |
kubeconform: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# When changing versions here, check that the version exists at: https://github.com/instrumenta/kubernetes-json-schema | |
k8s: | |
- '1.23.17' | |
- '1.24.14' | |
- '1.25.10' | |
- '1.26.5' | |
- '1.27.2' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20.4' | |
- name: Set up Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.12.0 | |
- name: Configure dependencies repositories | |
run: | | |
make configure-deps-repos | |
- name: Run kubeconform | |
env: | |
KUBERNETES_VERSION: ${{ matrix.k8s }} | |
run: make kubeconform |