From 96c9e233eb695efb3bdf933c35ac97c49b5f8300 Mon Sep 17 00:00:00 2001 From: TheDen Date: Mon, 7 Oct 2024 21:04:46 +1100 Subject: [PATCH] bump go version --- .github/workflows/ci.yaml | 2 +- .github/workflows/release.yaml | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 96524f9..b123f9e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -48,7 +48,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.23" - name: build run: go build *.go diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3ed9f52..9c37fb9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -21,7 +21,7 @@ jobs: - run: git fetch --force --tags - uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.23" - uses: goreleaser/goreleaser-action@v5 with: distribution: goreleaser diff --git a/go.mod b/go.mod index 5f69eda..b930b79 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/TheDen/gcopy -go 1.22 +go 1.23 require github.com/h2non/filetype v1.1.3