Skip to content

Bump golang from 1.22.5-alpine to 1.22.6-alpine #599

Bump golang from 1.22.5-alpine to 1.22.6-alpine

Bump golang from 1.22.5-alpine to 1.22.6-alpine #599

Workflow file for this run

---
name: CI
on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Check GoReleaser config
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: check
- name: Check
run: |
./integrationtest-setup.sh
go test -v ./...
./integrationtest-teardown.sh
- name: Build
run: go build -v ./...
...