Update go.mod and K8s client to v0.32.1 #448
Workflow file for this run
This file contains hidden or 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: Verify Chart Images | |
on: | |
push: | |
paths: | |
- 'chart/**' | |
jobs: | |
verifyImages: | |
strategy: | |
matrix: | |
go-version: [1.22.x] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Get arkade | |
id: get_arkade | |
run: | | |
curl -sLS https://get.arkade.dev | sudo sh | |
- name: Verify chart images | |
id: verify_images | |
run: | | |
VERBOSE=true make verify-charts |