diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 31e5597..9cc570b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -10,7 +10,7 @@ jobs: test: strategy: matrix: - go-version: [1.12.x, 1.13.x, 1.14.x, 1.15.x] + go-version: [1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index ec5fedb..b16a7df 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -9,7 +9,7 @@ jobs: test: strategy: matrix: - go-version: [1.12.x, 1.13.x, 1.14.x, 1.15.x] + go-version: [1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: @@ -40,7 +40,7 @@ jobs: - name: Install Go uses: actions/setup-go@v1 with: - go-version: 1.15.x + go-version: 1.16.x - name: Checkout code uses: actions/checkout@v2 with: diff --git a/go.mod b/go.mod index d0fa675..86ead94 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/tetafro/godot -go 1.15 +go 1.16 require gopkg.in/yaml.v2 v2.4.0