Skip to content

Update go version as a fix to CVEs (#320) #14

Update go version as a fix to CVEs (#320)

Update go version as a fix to CVEs (#320) #14

Workflow file for this run

on:
push:
tags:
- v[0-9].*
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup Go
uses: actions/setup-go@v4
with:
go-version: '1.23.1'
- run: make test
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: "~> 1.25"
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}