diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index f5c3b3be9..7c8d1b23c 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -23,7 +23,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.18 + go-version: 1.19 - name: Build on Linux if: runner.os == 'Linux' diff --git a/.github/workflows/race.yaml b/.github/workflows/race.yaml index b04280867..991437488 100644 --- a/.github/workflows/race.yaml +++ b/.github/workflows/race.yaml @@ -22,7 +22,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.18 + go-version: 1.19 - name: Set scheduled branch name shell: bash diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index d38178550..5338a14bb 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -33,7 +33,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.18 + go-version: 1.19 # Source: https://github.com/actions/cache/blob/main/examples.md#go---modules @@ -58,7 +58,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.18 + go-version: 1.19 - name: Checkout uses: actions/checkout@v2 @@ -86,7 +86,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.18 + go-version: 1.19 - name: Delete the stability tests from coverage run: rm -r stability-tests diff --git a/cmd/kaspactl/README.md b/cmd/kaspactl/README.md index 0af8a84d3..874db75a8 100644 --- a/cmd/kaspactl/README.md +++ b/cmd/kaspactl/README.md @@ -4,7 +4,7 @@ kaspactl is an RPC client for kaspad ## Requirements -Go 1.18 or later. +Go 1.19 or later. ## Installation diff --git a/cmd/kaspactl/docker/Dockerfile b/cmd/kaspactl/docker/Dockerfile index 857fc573d..009e736b1 100644 --- a/cmd/kaspactl/docker/Dockerfile +++ b/cmd/kaspactl/docker/Dockerfile @@ -1,5 +1,5 @@ # -- multistage docker build: stage #1: build stage -FROM golang:1.18-alpine AS build +FROM golang:1.19-alpine AS build RUN mkdir -p /go/src/github.com/kaspanet/kaspad diff --git a/cmd/kaspaminer/README.md b/cmd/kaspaminer/README.md index 71114a239..4cdbb939f 100644 --- a/cmd/kaspaminer/README.md +++ b/cmd/kaspaminer/README.md @@ -4,7 +4,7 @@ Kaspaminer is a CPU-based miner for kaspad ## Requirements -Go 1.18 or later. +Go 1.19 or later. ## Installation diff --git a/cmd/kaspaminer/docker/Dockerfile b/cmd/kaspaminer/docker/Dockerfile index 7eea24341..1f4ea91ae 100644 --- a/cmd/kaspaminer/docker/Dockerfile +++ b/cmd/kaspaminer/docker/Dockerfile @@ -1,5 +1,5 @@ # -- multistage docker build: stage #1: build stage -FROM golang:1.18-alpine AS build +FROM golang:1.19-alpine AS build RUN mkdir -p /go/src/github.com/kaspanet/kaspad diff --git a/docker/Dockerfile b/docker/Dockerfile index 2855a129e..7577169bb 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ # -- multistage docker build: stage #1: build stage -FROM golang:1.18-alpine AS build +FROM golang:1.19-alpine AS build RUN mkdir -p /go/src/github.com/kaspanet/kaspad diff --git a/stability-tests/docker/Dockerfile b/stability-tests/docker/Dockerfile index 051d985b2..fd90ac94e 100644 --- a/stability-tests/docker/Dockerfile +++ b/stability-tests/docker/Dockerfile @@ -4,7 +4,7 @@ ARG KASPAMINER_IMAGE FROM ${KASPAD_IMAGE} as kaspad FROM ${KASPAMINER_IMAGE} as kaspaminer -FROM golang:1.18-alpine +FROM golang:1.19-alpine RUN mkdir -p /go/src/github.com/kaspanet/kaspad