Skip to content

Commit ff79384

Browse files
committed
Fix CI
Signed-off-by: Tamal Saha <tamal@appscode.com>
1 parent ed626e1 commit ff79384

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ on:
77
push:
88
branches:
99
- master
10-
1110
workflow_dispatch:
11+
1212
concurrency:
1313
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
1414
cancel-in-progress: true
15+
1516
jobs:
1617
build:
1718
name: Build

.github/workflows/release-tracker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ on:
44
pull_request:
55
types: [closed]
66
workflow_dispatch:
7+
78
concurrency:
89
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
910
cancel-in-progress: true
11+
1012
jobs:
1113
build:
1214
runs-on: ubuntu-24.04

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ on:
44
push:
55
tags:
66
- "*.*"
7-
87
workflow_dispatch:
8+
99
concurrency:
1010
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
1111
cancel-in-progress: true
12+
1213
jobs:
1314
build:
1415
name: Build

.github/workflows/update-docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ on:
44
push:
55
branches:
66
- master
7-
87
workflow_dispatch:
8+
99
concurrency:
1010
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
1111
cancel-in-progress: true
12+
1213
jobs:
1314
build:
1415
name: Build

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ TAG := $(VERSION)_$(OS)_$(ARCH)
6666
TAG_PROD := $(TAG)
6767
TAG_DBG := $(VERSION)-dbg_$(OS)_$(ARCH)
6868

69-
GO_VERSION ?= 1.21
69+
GO_VERSION ?= 1.23
7070
BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)
7171

7272
OUTBIN = bin/$(BIN)-$(OS)-$(ARCH)
@@ -325,7 +325,7 @@ lint: $(BUILD_DIRS)
325325
--env HTTPS_PROXY=$(HTTPS_PROXY) \
326326
--env GOFLAGS="-mod=vendor" \
327327
$(BUILD_IMAGE) \
328-
golangci-lint run --enable $(ADDTL_LINTERS) --deadline=10m --exclude-files="generated.*\.go$\" --exclude-dirs-use-default --exclude-dirs=client,vendor
328+
golangci-lint run --enable $(ADDTL_LINTERS) --timeout=10m --exclude-files="generated.*\.go$\" --exclude-dirs-use-default --exclude-dirs=client,vendor
329329

330330
$(BUILD_DIRS):
331331
@mkdir -p $@

0 commit comments

Comments
 (0)