aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Moyer <smoyer1@selesy.com>2023-01-03 10:20:08 -0500
committerSteve Moyer <smoyer1@selesy.com>2023-01-03 10:20:08 -0500
commit33e3e4b65e022aeabbcadf8647f5de31d6435e60 (patch)
tree89a9af559d2db92fd1a2d1c729fe200061f81e17
parent3915d2b76e17ae7058510d3b4cd91b24786bb526 (diff)
downloadgit-bug-33e3e4b65e022aeabbcadf8647f5de31d6435e60.tar.gz
fix: resolve Go vulnerabilities
Resolves #975
-rw-r--r--.github/workflows/benchmark.yml2
-rw-r--r--.github/workflows/go.yml4
-rw-r--r--.github/workflows/release.yml2
-rw-r--r--go.mod2
4 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml
index e5fcd1f1..c7876f2d 100644
--- a/.github/workflows/benchmark.yml
+++ b/.github/workflows/benchmark.yml
@@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/setup-go@v3
with:
- go-version: 1.18.x
+ go-version: 1.19.x
- uses: actions/checkout@v3
# Run benchmark with `go test -bench` and stores the output to a file
- name: Run benchmark
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 90400553..7a9a130c 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.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
@@ -46,7 +46,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
- go-version: 1.18.x
+ go-version: 1.19.x
- name: Checkout code
uses: actions/checkout@v2
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index a245f052..c93c857e 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
- go-version: 1.18.x
+ go-version: 1.19.x
- name: Check out code
uses: actions/checkout@v2
diff --git a/go.mod b/go.mod
index 34081235..d3156613 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module github.com/MichaelMure/git-bug
-go 1.18
+go 1.19
require (
github.com/99designs/gqlgen v0.17.20