aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/go.yml
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2023-01-08 12:11:53 +0100
committerGitHub <noreply@github.com>2023-01-08 12:11:53 +0100
commitc7662a13acf6db50a45d22e70e7beac3276fe784 (patch)
tree630bd8655a65049bcb58ccada82631d948a07bb1 /.github/workflows/go.yml
parent51161a8fdb97814daa0543692c63b0d8a25a83ff (diff)
parent59684d74776738723901095c73782fbc619138e4 (diff)
downloadgit-bug-c7662a13acf6db50a45d22e70e7beac3276fe784.tar.gz
Merge pull request #976 from MichaelMure/fix/975/patch-security-vulnerabilities
fix: resolve Go vulnerabilities
Diffstat (limited to '.github/workflows/go.yml')
-rw-r--r--.github/workflows/go.yml9
1 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 90400553..d0f2585d 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
- go-version: [1.18.x]
+ go-version: [1.19.4]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
@@ -20,7 +20,7 @@ jobs:
steps:
- name: Set up Go ${{ matrix.node-version }}
- uses: actions/setup-go@v2
+ uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
@@ -44,13 +44,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
- uses: actions/setup-go@v2
+ uses: actions/setup-go@v3
with:
- go-version: 1.18.x
+ go-version: 1.19.4
- name: Checkout code
uses: actions/checkout@v2
- name: Check Code Formatting
run: find . -name "*.go" | while read line; do [ -z "$(gofmt -d "$line" | head)" ] || exit 1; done
-