Skip to content

Commit

Permalink
Bump to Go 1.23, Node 20 and Alpine 3.20
Browse files Browse the repository at this point in the history
  • Loading branch information
LeSuisse committed Sep 7, 2024
1 parent 2402862 commit f841489
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 1,651 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.19
go-version: 1.23
id: go
- uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
- uses: actions/checkout@v4
- name: Prepare environment
run: sudo apt -y update && sudo apt-get -y install libvips-dev
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Build
run: go build cmd/alpacascloud/main.go
- name: Staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@2022.1.3 && staticcheck -checks 'all,-ST1000,-SA1019' ./...
run: go install honnef.co/go/tools/cmd/staticcheck@2024.1.1 && staticcheck -checks 'all,-ST1000,-SA1019' ./...
docker-image-image-api-server:
name: Build & scan Docker image Image API server
runs-on: ubuntu-22.04
Expand Down
38 changes: 37 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,45 @@
module github.com/LeSuisse/alpacas.cloud

go 1.16
go 1.23

require (
github.com/gin-gonic/gin v1.10.0
github.com/h2non/bimg v1.1.9
github.com/prometheus/client_golang v1.18.0
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/bytedance/sonic v1.11.6 // indirect
github.com/bytedance/sonic/loader v0.1.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cloudwego/base64x v0.1.4 // indirect
github.com/cloudwego/iasm v0.2.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.20.0 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.45.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.12 // indirect
golang.org/x/arch v0.8.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
google.golang.org/protobuf v1.34.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit f841489

Please sign in to comment.