From 06afeb7f3341abaa20cce24d3c3b31e2e0ff018e Mon Sep 17 00:00:00 2001 From: jinoosss Date: Mon, 8 Jul 2024 15:15:24 +0900 Subject: [PATCH] chore: bump gnolang/gno version to v0.1.0-nightly.20240707 --- .github/workflows/gen.yaml | 2 +- .github/workflows/lint.yaml | 5 ++--- .github/workflows/test.yaml | 4 ++-- Dockerfile | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/gen.yaml b/.github/workflows/gen.yaml index 61c27b44..357fe581 100644 --- a/.github/workflows/gen.yaml +++ b/.github/workflows/gen.yaml @@ -9,7 +9,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: 1.21.x + go-version: 1.22.x - name: Checkout code uses: actions/checkout@v4 diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index b9f1a65e..60b4486f 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -9,7 +9,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: 1.21.x + go-version: 1.22.x - name: Checkout code uses: actions/checkout@v4 @@ -17,5 +17,4 @@ jobs: - name: Lint uses: golangci/golangci-lint-action@v6 with: - args: - --config=./.github/golangci.yaml + args: --config=./.github/golangci.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 83a11d24..cd285582 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,7 +9,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: 1.21.x + go-version: 1.22.x - name: Checkout code uses: actions/checkout@v4 @@ -23,7 +23,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: 1.21.x + go-version: 1.22.x - name: Checkout code uses: actions/checkout@v4 diff --git a/Dockerfile b/Dockerfile index 4c3689c6..f9ea5571 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Stage 1: Build #=============== -FROM golang:1.21-alpine as builder +FROM golang:1.22-alpine as builder COPY . /app