From d498ec19951055170479a4f3c7815e4b46faa056 Mon Sep 17 00:00:00 2001 From: Simon Let Date: Thu, 15 Dec 2022 15:07:55 +0100 Subject: [PATCH] upgrade actions --- .github/workflows/go.yaml | 6 ++---- go.mod | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 705b8a6..e4ba920 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -8,12 +8,10 @@ jobs: steps: - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.18 + uses: actions/setup-go@v3 - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Test run: go test -v ./... diff --git a/go.mod b/go.mod index f0a521f..946a5b5 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/curusarn/resh -go 1.18 +go 1.19 require ( github.com/BurntSushi/toml v0.4.1