From 34b30198a78ca26ee68ccba4f4f3ed0aa3629428 Mon Sep 17 00:00:00 2001 From: Amit Saha Date: Thu, 24 Aug 2023 19:41:55 +0930 Subject: [PATCH] Use Go 1.21 --- .github/workflows/ci.yml | 6 +++--- README.md | 2 +- go.mod | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 03a9075..4d6e446 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: [ '1.19'] + go: [ '1.21'] name: Go ${{ matrix.go }} tests - Linux steps: - uses: actions/checkout@v2 @@ -30,7 +30,7 @@ jobs: runs-on: macOS-latest strategy: matrix: - go: [ '1.19'] + go: [ '1.21'] name: Go ${{ matrix.go }} tests - MacOS steps: - uses: actions/checkout@v2 @@ -49,7 +49,7 @@ jobs: runs-on: windows-latest strategy: matrix: - go: [ '1.19' ] + go: [ '1.21' ] name: Go ${{ matrix.go }} tests - Windows steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 8562cd0..aa105f2 100644 --- a/README.md +++ b/README.md @@ -288,7 +288,7 @@ workflow via scheduled github actions [here](https://github.com/amitsaha/gitback ## Building -If you have Go 1.19.x installed, you can clone the repository and: +If you have Go 1.21.x installed, you can clone the repository and: ``` $ go build diff --git a/go.mod b/go.mod index 10832ea..003f247 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/amitsaha/gitbackup -go 1.19 +go 1.21 require ( github.com/99designs/keyring v1.2.2