fix: switch back to go 1.22 (#10502)

Switching back until https://github.com/ipfs/kubo/issues/10501 is resolved.
This commit is contained in:
Marcin Rataj 2024-09-02 23:39:16 +02:00 committed by GitHub
parent 5fe960474c
commit 23ca1ddab1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 13 additions and 13 deletions

View File

@ -34,7 +34,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.22.x
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL

View File

@ -28,7 +28,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.22.x
- uses: actions/checkout@v4
- run: docker build -t $IMAGE_NAME:$WIP_IMAGE_TAG .
- run: docker run --rm $IMAGE_NAME:$WIP_IMAGE_TAG --version

View File

@ -49,7 +49,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.22.x
- uses: protocol/cache-go-action@v1
with:
name: ${{ github.job }}
@ -136,7 +136,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.22.x
- uses: protocol/cache-go-action@v1
with:
name: ${{ github.job }}

View File

@ -30,7 +30,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.22.x
- uses: actions/checkout@v4
- run: make cmd/ipfs-try-build
env:

View File

@ -27,7 +27,7 @@ jobs:
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version: "1.23.x"
go-version: "1.22.x"
- name: Check that go.mod is tidy
uses: protocol/multiple-go-modules@v1.4
with:

View File

@ -31,6 +31,6 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.22.x
- uses: actions/checkout@v4
- run: make -O test_go_lint

View File

@ -32,7 +32,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.22.x
- name: Check out Kubo
uses: actions/checkout@v4
- name: Install missing tools

View File

@ -10,7 +10,7 @@ on:
- 'master'
env:
GO_VERSION: 1.23.x
GO_VERSION: 1.22.x
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event_name == 'push' && github.sha || github.ref }}

View File

@ -25,7 +25,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.22.x
- name: Checkout Kubo
uses: actions/checkout@v4
with:

View File

@ -1,4 +1,4 @@
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.23 AS builder
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.22 AS builder
ARG TARGETOS TARGETARCH

View File

@ -1,6 +1,6 @@
module github.com/ipfs/kubo/examples/kubo-as-a-library
go 1.23
go 1.22
// Used to keep this in sync with the current version of kubo. You should remove
// this if you copy this example.

2
go.mod
View File

@ -251,4 +251,4 @@ require (
lukechampine.com/blake3 v1.3.0 // indirect
)
go 1.23
go 1.22