summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPete Peterson <peterfpeterson@gmail.com>2024-02-28 14:57:17 -0500
committerGitHub <noreply@github.com>2024-02-28 20:57:17 +0100
commitd88a6a721b0e29b88e37cdb345d0d83022bd5217 (patch)
tree07b41b3e1c05d7478d18c93d4b37280385af3ee3
parent2fbf3e908e8b00249d99b6fe16e1f0917cb5d59e (diff)
Update versions for github actions (#183)HEADmaster
* Update versions for actions * Enable caching build environment
-rw-r--r--.github/workflows/go.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 1dafe4c..03233ed 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -11,12 +11,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
- name: Set up Go
- uses: actions/setup-go@v2
+ uses: actions/setup-go@v5
with:
- go-version: 1.20
+ cache-dependency-path: './go.sum'
+ go-version-file: './go.mod'
- name: Build
run: go build -v ./...