Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update cosmtrek/air project link to air-verse/air #9132

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/api/dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

FROM golang:1.22-alpine3.19 as AIR

RUN go install github.com/cosmtrek/air@latest
RUN go install github.com/air-verse/air@latest

FROM golang:1.22-alpine3.19

Expand Down
2 changes: 1 addition & 1 deletion modules/auth/dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

FROM golang:1.22-alpine3.19 as AIR

RUN go install github.com/cosmtrek/air@latest
RUN go install github.com/air-verse/air@latest

FROM golang:1.22-alpine3.19

Expand Down
2 changes: 1 addition & 1 deletion modules/common/tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ endif
install-air:
ifndef AIR_BINARY
@echo "[tools] downloading air..."
@go install github.com/cosmtrek/air
@go install github.com/air-verse/air
else
@echo "[tools] air already exists"
endif
Expand Down
2 changes: 1 addition & 1 deletion modules/common/tools/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ toolchain go1.22.2

require (
github.com/apache/skywalking-eyes v0.6.0
github.com/cosmtrek/air v1.52.0
github.com/air-verse/air v1.52.2
github.com/golangci/golangci-lint v1.59.0
k8s.io/code-generator v0.30.0
sigs.k8s.io/kind v0.23.0
Expand Down
4 changes: 2 additions & 2 deletions modules/common/tools/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDk
github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA=
github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU=
github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA=
github.com/cosmtrek/air v1.52.0 h1:fCMADJfEdcBE84oyhChPXv2XS5A1jUN/uLo49ivCnlI=
github.com/cosmtrek/air v1.52.0/go.mod h1:xILtq8JGIYwe++r/ib4PdhubiuKBmE1vutC49E+5A78=
github.com/air-verse/air v1.52.0 h1:fCMADJfEdcBE84oyhChPXv2XS5A1jUN/uLo49ivCnlI=
github.com/air-verse/air v1.52.0/go.mod h1:xILtq8JGIYwe++r/ib4PdhubiuKBmE1vutC49E+5A78=
github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/creack/pty v1.1.21 h1:1/QdRyBaHHJP61QkWMXlOIBfsgdDeeKfK8SYVUWJKf0=
Expand Down
2 changes: 1 addition & 1 deletion modules/common/tools/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package tools

import (
_ "github.com/apache/skywalking-eyes/cmd/license-eye"
_ "github.com/cosmtrek/air"
_ "github.com/air-verse/air"
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "k8s.io/code-generator"
_ "sigs.k8s.io/kind"
Expand Down
2 changes: 1 addition & 1 deletion modules/metrics-scraper/dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

FROM golang:1.22-alpine3.19 as AIR

RUN go install github.com/cosmtrek/air@latest
RUN go install github.com/air-verse/air@latest

FROM golang:1.22-alpine3.19

Expand Down
2 changes: 1 addition & 1 deletion modules/web/dev.go.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

FROM golang:1.22-alpine3.19 as AIR

RUN go install github.com/cosmtrek/air@latest
RUN go install github.com/air-verse/air@latest

FROM golang:1.22-alpine3.19

Expand Down
Loading