aboutsummaryrefslogtreecommitdiffstats
path: root/.github
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 /.github
parent3915d2b76e17ae7058510d3b4cd91b24786bb526 (diff)
downloadgit-bug-33e3e4b65e022aeabbcadf8647f5de31d6435e60.tar.gz
fix: resolve Go vulnerabilities
Resolves #975
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/benchmark.yml2
-rw-r--r--.github/workflows/go.yml4
-rw-r--r--.github/workflows/release.yml2
3 files changed, 4 insertions, 4 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