Skip to content

Commit 79d656f

Browse files
committed
chore: sync main into feat/ai-sre
2 parents 27e37c6 + 05e1330 commit 79d656f

85 files changed

Lines changed: 6254 additions & 615 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818
- name: Check out code
19-
uses: actions/checkout@v6
19+
uses: actions/checkout@v7
2020

2121
- name: Set up Go
22-
uses: actions/setup-go@v6
22+
uses: actions/setup-go@v7
2323
with:
2424
go-version-file: "go.mod"
2525

.github/workflows/code-scanning.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
build-mode: autobuild
2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@v7
3131

3232
- name: Initialize CodeQL
3333
uses: github/codeql-action/init@v4
@@ -36,7 +36,7 @@ jobs:
3636
build-mode: ${{ matrix.build-mode }}
3737

3838
- name: Setup Go
39-
uses: actions/setup-go@v6
39+
uses: actions/setup-go@v7
4040
if: matrix.language == 'go'
4141
with:
4242
go-version-file: "go.mod"

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- name: Check out code
16-
uses: actions/checkout@v6
16+
uses: actions/checkout@v7
1717

1818
- name: Set up Go
19-
uses: actions/setup-go@v6
19+
uses: actions/setup-go@v7
2020
with:
2121
go-version-file: "go.mod"
2222

.github/workflows/install-scripts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: shellcheck + parse
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
- name: shellcheck
2929
run: shellcheck -s sh install.sh
3030
- name: sh parse
@@ -40,7 +40,7 @@ jobs:
4040
needs: lint
4141
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
4242
steps:
43-
- uses: actions/checkout@v6
43+
- uses: actions/checkout@v7
4444
- name: Upload install scripts to S3-compatible storage
4545
env:
4646
AWS_ACCESS_KEY_ID: ${{ secrets.MIRROR_S3_ACCESS_KEY_ID }}

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
name: lint
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v6
18-
- uses: actions/setup-go@v6
17+
- uses: actions/checkout@v7
18+
- uses: actions/setup-go@v7
1919
with:
2020
go-version: stable
2121
- name: golangci-lint

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616

1717
steps:
1818
- name: Check out code
19-
uses: actions/checkout@v6
19+
uses: actions/checkout@v7
2020
with:
2121
fetch-depth: 0
2222

2323
- name: Set up Go
24-
uses: actions/setup-go@v6
24+
uses: actions/setup-go@v7
2525
with:
2626
go-version-file: "go.mod"
2727

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ bin/
88
*.out
99
.DS_Store
1010
docs/
11+
.worktrees/

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Build configuration
22
BINARY_NAME ?= flashduty
33
BUILD_DIR := bin
4-
GOLANGCI_LINT_VERSION := v2.2.1
4+
GOLANGCI_LINT_VERSION := v2.11.4
55
GOLANGCI_LINT := $(BUILD_DIR)/golangci-lint
66
GCI_VERSION := v0.13.5
77
GCI := $(BUILD_DIR)/gci
@@ -52,11 +52,11 @@ gci: $(GCI) ## Sort imports using gci
5252

5353
.PHONY: lint
5454
lint: $(GOLANGCI_LINT) ## Run golangci-lint
55-
$(GOLANGCI_LINT) run
55+
$(GOLANGCI_LINT) run --allow-serial-runners
5656

5757
.PHONY: lint-fix
5858
lint-fix: $(GOLANGCI_LINT) ## Run golangci-lint with auto-fix
59-
$(GOLANGCI_LINT) run --fix
59+
$(GOLANGCI_LINT) run --fix --allow-serial-runners
6060

6161
.PHONY: test
6262
test: ## Run unit tests

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ module github.com/flashcatcloud/flashduty-cli
33
go 1.25.1
44

55
require (
6-
github.com/flashcatcloud/go-flashduty v0.5.4-0.20260629091912-04a0bfaf665d
6+
github.com/flashcatcloud/go-flashduty v0.5.7
77
github.com/mattn/go-runewidth v0.0.24
88
github.com/spf13/cobra v1.10.2
99
github.com/spf13/pflag v1.0.10
1010
github.com/toon-format/toon-go v0.0.0-20251202084852-7ca0e27c4e8c
11-
golang.org/x/term v0.44.0
11+
golang.org/x/term v0.45.0
1212
gopkg.in/yaml.v3 v3.0.1
1313
)
1414

1515
require (
1616
github.com/clipperhouse/uax29/v2 v2.2.0 // indirect
1717
github.com/inconshreveable/mousetrap v1.1.0 // indirect
18-
golang.org/x/sys v0.46.0 // indirect
18+
golang.org/x/sys v0.47.0 // indirect
1919
)

go.sum

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
github.com/clipperhouse/uax29/v2 v2.2.0 h1:ChwIKnQN3kcZteTXMgb1wztSgaU+ZemkgWdohwgs8tY=
22
github.com/clipperhouse/uax29/v2 v2.2.0/go.mod h1:EFJ2TJMRUaplDxHKj1qAEhCtQPW2tJSwu5BF98AuoVM=
33
github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
4-
github.com/flashcatcloud/go-flashduty v0.5.4-0.20260629091912-04a0bfaf665d h1:jWzPzsWn46dCWC/PL5nncOTL1Zid4UMynbPsbL1mGdU=
5-
github.com/flashcatcloud/go-flashduty v0.5.4-0.20260629091912-04a0bfaf665d/go.mod h1:aA0RtZEs0AYOwwdNKdtVeD8YMOdnmVY1zAlVD+9Ovx8=
4+
github.com/flashcatcloud/go-flashduty v0.5.7 h1:bTgs4wN2mLMaVi8tuPDdR+8ZA6Dd4y6SKeZD+KhL4w8=
5+
github.com/flashcatcloud/go-flashduty v0.5.7/go.mod h1:aA0RtZEs0AYOwwdNKdtVeD8YMOdnmVY1zAlVD+9Ovx8=
66
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
77
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
88
github.com/mattn/go-runewidth v0.0.24 h1:cpokDiIn0MGnhdHwuWnJBITySJ20QyNGnY2kR/ay2DU=
@@ -16,10 +16,10 @@ github.com/spf13/pflag v1.0.10/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3A
1616
github.com/toon-format/toon-go v0.0.0-20251202084852-7ca0e27c4e8c h1:D8lDFovBMZywze1eh9iwMLcYor5f11mHBocLhO7cBe8=
1717
github.com/toon-format/toon-go v0.0.0-20251202084852-7ca0e27c4e8c/go.mod h1:j/BOnpF2ihnz4lELs99h9mwGJBx/zdleOUCnLLRPCsc=
1818
go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg=
19-
golang.org/x/sys v0.46.0 h1:noSf2Fq6F8DBgS+LysIkx7rIExoNHJsxOAtPp4rthXw=
20-
golang.org/x/sys v0.46.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
21-
golang.org/x/term v0.44.0 h1:0rLvDRCtNj0gZkyIXhCyOb2OAzEhLVqc4B+hrsBhrmc=
22-
golang.org/x/term v0.44.0/go.mod h1:7ze4MdzUzLXpSAoFP1H0bOI9aXDqveSvatT5vKcFh2Y=
19+
golang.org/x/sys v0.47.0 h1:o7XGOvZQCADBQQ4Y7VNq2dRWQR7JmOUW8Kxx4ZsNgWs=
20+
golang.org/x/sys v0.47.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
21+
golang.org/x/term v0.45.0 h1:NwWyBmoJCbfTHpxrWoZ9C6/VxOf7ic219I8xZZFdrf0=
22+
golang.org/x/term v0.45.0/go.mod h1:9aqxs0blBcrm/n0L9QW0aRVD+ktan8ssZromtqJC43w=
2323
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
2424
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
2525
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

0 commit comments

Comments
 (0)