Meh, try to fix the build.
Some checks failed
Build & Test / Main (push) Failing after 5s

This commit is contained in:
Sam Fredrickson 2024-08-25 19:07:46 -07:00
parent 8707d8f454
commit 5de2a77625
2 changed files with 4 additions and 6 deletions

View File

@ -19,10 +19,8 @@ jobs:
with: with:
go-version: 1.23.0 go-version: 1.23.0
- -
name: Run linter name: Go vet
uses: golangci/golangci-lint-action@v3 run: go vet ./...
with:
version: v1.60.3
- -
name: Run tests name: Run tests
run: go test ./... run: go test ./...

View File

@ -17,13 +17,13 @@ jobs:
name: Set up Go name: Set up Go
uses: actions/setup-go@v4 uses: actions/setup-go@v4
with: with:
go-version: 1.22.1 go-version: 1.23.0
- -
name: Run GoReleaser name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5 uses: goreleaser/goreleaser-action@v5
with: with:
distribution: goreleaser distribution: goreleaser
version: 1.24.0 version: 2.2.0
args: release --clean args: release --clean
env: env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}