From f91663099dde3ffcae0fce1f2f0e607fa514c36b Mon Sep 17 00:00:00 2001 From: Vincenzo Palazzo Date: Tue, 26 Mar 2024 18:29:58 +0100 Subject: [PATCH] ci: fix the go version inside the CI Signed-off-by: Vincenzo Palazzo --- .github/workflows/build.yml | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7b89215..871addd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,10 +22,10 @@ jobs: - { OS: "linux", ARCH: "arm64", ARM: "" } - { OS: "darwin", ARCH: "amd64", ARM: "" } steps: - - name: Set up Go 1.18 + - name: Set up Go 1.21 uses: actions/setup-go@v1 with: - go-version: 1.18 + go-version: 1.21 - name: Check out source code uses: actions/checkout@v1 diff --git a/go.mod b/go.mod index e248e74..e503db6 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/vincenzopalazzo/lnprototest-v2 -go 1.22.1 +go 1.23 require ( github.com/akamensky/argparse v1.4.0