Skip to content

Bump k8s.io/apimachinery from 0.29.3 to 0.30.2 #217

Bump k8s.io/apimachinery from 0.29.3 to 0.30.2

Bump k8s.io/apimachinery from 0.29.3 to 0.30.2 #217

Workflow file for this run

name: helmtest CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout VCS
uses: actions/checkout@v4
- name: Prepare environment
run: |
go_version=$(cat EXPECTED_GO_VERSION)
echo "GO_VERSION=$go_version" >> $GITHUB_ENV
echo "CI=true" >> $GITHUB_ENV
- name: Setup GO
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Lint
run: make golangci-lint
- name: Test
run: make test