Skip to content

Bump actions/setup-go from 5 to 6 #195

Bump actions/setup-go from 5 to 6

Bump actions/setup-go from 5 to 6 #195

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths-ignore: ['**.md']
pull_request:
types: [opened, synchronize]
paths-ignore: ['**.md']
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- run: make test
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: make docker-build
lint-go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- run: make lint
lint-chart:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: make lint-chart