Skip to content

chore(deps): update alpine docker tag to v3.20.3 #43

chore(deps): update alpine docker tag to v3.20.3

chore(deps): update alpine docker tag to v3.20.3 #43

Workflow file for this run

name: Test
on:
pull_request:
jobs:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- run: go mod download
- run: go test ./...
chart:
runs-on: ubuntu-latest
strategy:
matrix:
k8s_version:
- 1.29.5
- 1.30.0
- 1.30.1
steps:
- name: Check out the repo
uses: actions/checkout@v4
- uses: azure/setup-helm@v4
- run: helm template prompage chart/ > templated.yaml
- uses: docker://ghcr.io/yannh/kubeconform:latest
with:
entrypoint: '/kubeconform'
args: '-summary -output json --kubernetes-version ${{ matrix.k8s_version }} templated.yaml'