From 33e3e4b65e022aeabbcadf8647f5de31d6435e60 Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Tue, 3 Jan 2023 10:20:08 -0500 Subject: [PATCH] fix: resolve Go vulnerabilities Resolves #975 --- .github/workflows/benchmark.yml | 2 +- .github/workflows/go.yml | 4 ++-- .github/workflows/release.yml | 2 +- go.mod | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index e5fcd1f119572ebef66da38d3a584082306ef231..c7876f2dd2ed3c5a64f9012a4adc3714571b51e1 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 904005539941f42ac207c5532f8bf1fbe5f6db48..7a9a130cc6c494944f269e24366fab2f2b3ceae1 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 a245f05262d4cfff0f1ceca9e86a2bf3c7d20169..c93c857e6711ba6e0b6c3874c2a8d0a2ef95d373 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 34081235ecba83e559b184f64f4ed6f51af09748..d3156613134fd3e583f6bbeaee9959d33e39a1e2 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