Skip to content

Commit

Permalink
chore: upgrade to go 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
savsgio committed Mar 17, 2023
1 parent 6223a40 commit 9e52f9d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
build:
strategy:
matrix:
go-version: [1.17.x]
go-version: [1.20.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.17.x]
go-version: [1.20.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -25,7 +25,7 @@ jobs:
needs: test
strategy:
matrix:
go-version: [1.17.x]
go-version: [1.20.x]
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Simple, lightweight and ultra-fast HTTP Cache to speed up your websites.

### Requirements

- [Go](https://golang.org/dl/) >= 1.13.X
- [Go](https://golang.org/dl/) >= 1.20.X
- make
- git

Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
### BUILDER ###
###############

FROM golang:1.17-alpine3.15 as builder
FROM golang:1.20-alpine3.17 as builder

RUN apk add git build-base

Expand All @@ -17,7 +17,7 @@ RUN make
### RELEASE ###
###############

FROM alpine:3.15
FROM alpine:3.17

LABEL Author="Sergio Andres Virviescas Santana <savsgio.engineer@gmail.com>"

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/savsgio/kratgo

go 1.17
go 1.20

require (
github.com/allegro/bigcache/v3 v3.0.1
Expand Down

0 comments on commit 9e52f9d

Please sign in to comment.