From c74e36a12ff5af904117ee3ec4f26edf8e6b40cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Duchesneau?= Date: Tue, 16 Jul 2024 14:34:26 -0400 Subject: [PATCH] bump go to 1.22 in github action and go.mod --- .github/workflows/docker.yml | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index f480c62..b0efcc6 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -29,7 +29,7 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: 1.20.x + go-version: 1.22.x - uses: actions/cache@v2 with: @@ -81,4 +81,4 @@ jobs: uses: Ilshidur/action-slack@2.0.2 with: args: | - :done: *${{ github.repository }}* Success building docker images from ${{ github.ref_type }} _${{ github.ref_name }}_ (${{ github.actor }}) :sparkling_heart: ```${{ join(needs.build-and-push-image.outputs.tags, ' ') }}``` \ No newline at end of file + :done: *${{ github.repository }}* Success building docker images from ${{ github.ref_type }} _${{ github.ref_name }}_ (${{ github.actor }}) :sparkling_heart: ```${{ join(needs.build-and-push-image.outputs.tags, ' ') }}``` diff --git a/go.mod b/go.mod index 728e365..5e761b0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/streamingfast/substreams-sink-kv -go 1.21 +go 1.22 require ( connectrpc.com/connect v1.16.1