Skip to content

Commit

Permalink
bump: go1.22 + golangci v1.56.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Aug 20, 2024
1 parent 3718ccd commit fd360b5
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/async-icq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
- '.github/workflows/async-icq.yml'

env:
LINT_VERSION: v1.52
GO_VERSION: 1.21.0
LINT_VERSION: v1.56.2
GO_VERSION: 1.22.0
WORKING_DIRECTORY: modules/async-icq

HOST_TAR_PATH: /tmp/icq-host.tar
Expand Down Expand Up @@ -131,4 +131,4 @@ jobs:
docker image ls -a
- name: Run Test
run: make ${{ matrix.test }}
run: make ${{ matrix.test }}
6 changes: 3 additions & 3 deletions .github/workflows/packet-forward-middleware.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
- '.github/workflows/packet-forward-middleware.yml'

env:
LINT_VERSION: v1.55.2
GO_VERSION: 1.21.0
LINT_VERSION: v1.56.2
GO_VERSION: 1.22.0
WORKING_DIRECTORY: middleware/packet-forward-middleware

DOCKER_TAG: pfm:local
Expand Down Expand Up @@ -105,4 +105,4 @@ jobs:
docker image ls -a
- name: Run Test
run: make ${{ matrix.test }}
run: make ${{ matrix.test }}
2 changes: 1 addition & 1 deletion middleware/packet-forward-middleware/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# docker build . -t pfm:local
# docker run --rm -it pfm:local q ibc-router

FROM golang:1.21-alpine3.18 as builder
FROM golang:1.22-alpine3.20 as builder

RUN set -eux; apk add --no-cache git libusb-dev linux-headers gcc musl-dev make;

Expand Down
2 changes: 1 addition & 1 deletion middleware/packet-forward-middleware/e2e/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/e2e

go 1.21
go 1.22

toolchain go1.22.3

Expand Down
2 changes: 1 addition & 1 deletion middleware/packet-forward-middleware/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.21
go 1.22

toolchain go1.23.0

Expand Down
4 changes: 2 additions & 2 deletions modules/async-icq/Dockerfile.icq
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# make local-image-icq
# docker run --rm -it icq-host:local q

FROM golang:1.21-alpine3.18 as builder
FROM golang:1.22-alpine3.20 as builder

RUN set -eux; apk add --no-cache git libusb-dev linux-headers gcc musl-dev make go;

Expand All @@ -21,4 +21,4 @@ FROM alpine:3.18

COPY --from=builder /go/build/* /bin/simd

ENTRYPOINT ["/bin/simd"]
ENTRYPOINT ["/bin/simd"]
4 changes: 2 additions & 2 deletions modules/async-icq/Dockerfile.icq-demo
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# make local-image-icq-demo
# docker run --rm -it icq-demo:local q interquery

FROM golang:1.21-alpine3.18 as builder
FROM golang:1.22-alpine3.20 as builder

RUN set -eux; apk add --no-cache git libusb-dev linux-headers gcc musl-dev make go;

Expand All @@ -21,4 +21,4 @@ FROM alpine:3.18

COPY --from=builder /go/build/* /bin/icq-demo

ENTRYPOINT ["/bin/icq-demo"]
ENTRYPOINT ["/bin/icq-demo"]

0 comments on commit fd360b5

Please sign in to comment.