Skip to content

fix(deps): update module github.com/alecthomas/kong to v1.13.0 #1536

fix(deps): update module github.com/alecthomas/kong to v1.13.0

fix(deps): update module github.com/alecthomas/kong to v1.13.0 #1536

Workflow file for this run

name: Go
on:
push:
branches: [main]
tags: "v*"
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version: "1.25"
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- name: Build
run: go test -v ./...
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}