Skip to content

Commit 35701a3

Browse files
committed
fix(relayer): fix docker build in CI
1 parent 41ec2ee commit 35701a3

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/relayer--docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permissions:
55

66
on:
77
push:
8-
branches: [main]
8+
branches: [main, fix-relayer-build]
99
tags:
1010
- "relayer-v*"
1111
paths:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG PACKAGE=eventindexer
22

3-
FROM golang:1.23.5 AS builder
3+
FROM golang:1.24.0 AS builder
44

55
ARG PACKAGE
66

packages/relayer/types_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ import (
1313
"github.com/stretchr/testify/assert"
1414
)
1515

16-
type mockConfirmer struct {
17-
}
16+
type mockConfirmer struct{}
1817

1918
var (
2019
notFoundTxHash = common.HexToHash("0x123")

0 commit comments

Comments
 (0)