Skip to content

Bump golang from 1.22.2-alpine to 1.22.3-alpine #194

Bump golang from 1.22.2-alpine to 1.22.3-alpine

Bump golang from 1.22.2-alpine to 1.22.3-alpine #194

Workflow file for this run

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