Skip to content

fix(deps): update module github.com/jedib0t/go-pretty/v6 to v6.6.3 #23

fix(deps): update module github.com/jedib0t/go-pretty/v6 to v6.6.3

fix(deps): update module github.com/jedib0t/go-pretty/v6 to v6.6.3 #23

Workflow file for this run

name: Build binary
on:
pull_request:
branches:
jobs:
build-binary:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- id: vars
run: |
echo ::set-output name=go_version::$(cat go.mod | head -3 | tail -1 | cut -d ' ' -f 2)
echo "Using Go version ${{ steps.vars.outputs.go_version }}"
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ steps.vars.outputs.go_version }}
- name: Compile the source
uses: goreleaser/goreleaser-action@v6
with:
version: v2.1.0
args: build --snapshot
env:
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}