Skip to content

Commit 4264fa8

Browse files
authored
chore(deps): update dependencies and GitHub Actions (#164)
2 parents 3476d8b + 008915a commit 4264fa8

6 files changed

Lines changed: 84 additions & 84 deletions

File tree

.github/workflows/build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515

16-
- uses: actions/setup-go@v5
16+
- uses: actions/setup-go@v6
1717
with:
18-
go-version: "1.22"
18+
go-version: "1.25"
1919

2020
- name: test
2121
run: make test

.github/workflows/codeql.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@ jobs:
4141

4242
steps:
4343
- name: Checkout repository
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v6
4545

4646
- name: Install Go
47-
uses: actions/setup-go@v5
47+
uses: actions/setup-go@v6
4848
with:
4949
go-version-file: go.mod
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL
53-
uses: github/codeql-action/init@v3
53+
uses: github/codeql-action/init@v4
5454
with:
5555
languages: ${{ matrix.language }}
5656
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -64,7 +64,7 @@ jobs:
6464
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
6565
# If this step fails, then you should remove it and run the build manually (see below)
6666
- name: Autobuild
67-
uses: github/codeql-action/autobuild@v3
67+
uses: github/codeql-action/autobuild@v4
6868

6969
# ℹ️ Command-line programs to run using the OS shell.
7070
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -77,6 +77,6 @@ jobs:
7777
# ./location_of_script_within_repo/buildscript.sh
7878

7979
- name: Perform CodeQL Analysis
80-
uses: github/codeql-action/analyze@v3
80+
uses: github/codeql-action/analyze@v4
8181
with:
8282
category: "/language:${{matrix.language}}"

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020

21-
- uses: actions/setup-go@v5
21+
- uses: actions/setup-go@v6
2222
with:
23-
go-version: "1.22"
23+
go-version: "1.25"
2424

2525
- name: download dependencies
2626
run: go mod download
2727

2828
- name: golangci-lint
29-
uses: golangci/golangci-lint-action@v8
29+
uses: golangci/golangci-lint-action@v9
3030
with:
3131
only-new-issues: true

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
permissions: write-all
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0
2525

2626
- run: git fetch --force --tags
2727

28-
- uses: actions/setup-go@v5
28+
- uses: actions/setup-go@v6
2929
with:
30-
go-version: "1.22"
30+
go-version: "1.25"
3131
cache: true
3232

3333
- name: install mockery

go.mod

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/zeabur/cli
22

3-
go 1.23.0
4-
5-
toolchain go1.24.1
3+
go 1.25.0
64

75
require (
86
github.com/AlecAivazis/survey/v2 v2.3.7
@@ -13,28 +11,30 @@ require (
1311
github.com/fatih/color v1.18.0
1412
github.com/google/go-github v17.0.0+incompatible
1513
github.com/hashicorp/go-envparse v0.1.0
16-
github.com/hasura/go-graphql-client v0.14.4
14+
github.com/hasura/go-graphql-client v0.15.1
1715
github.com/onsi/ginkgo/v2 v2.23.4
1816
github.com/onsi/gomega v1.38.0
1917
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06
2018
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
21-
github.com/spf13/cobra v1.9.1
22-
github.com/spf13/viper v1.20.1
23-
github.com/stretchr/testify v1.10.0
24-
go.uber.org/zap v1.27.0
25-
golang.org/x/oauth2 v0.30.0
19+
github.com/spf13/cobra v1.10.2
20+
github.com/spf13/viper v1.21.0
21+
github.com/stretchr/testify v1.11.1
22+
go.uber.org/zap v1.27.1
23+
golang.org/x/oauth2 v0.34.0
2624
)
2725

2826
require (
29-
github.com/coder/websocket v1.8.13 // indirect
27+
github.com/clipperhouse/stringish v0.1.1 // indirect
28+
github.com/clipperhouse/uax29/v2 v2.4.0 // indirect
29+
github.com/coder/websocket v1.8.14 // indirect
3030
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3131
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
32-
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
33-
github.com/google/go-querystring v1.1.0 // indirect
32+
github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
33+
github.com/google/go-querystring v1.2.0 // indirect
3434
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
35-
github.com/sagikazarmark/locafero v0.9.0 // indirect
36-
github.com/sourcegraph/conc v0.3.0 // indirect
35+
github.com/sagikazarmark/locafero v0.12.0 // indirect
3736
go.uber.org/automaxprocs v1.6.0 // indirect
37+
go.yaml.in/yaml/v3 v3.0.4 // indirect
3838
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
3939
)
4040

@@ -48,20 +48,19 @@ require (
4848
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
4949
github.com/mattn/go-colorable v0.1.14 // indirect
5050
github.com/mattn/go-isatty v0.0.20 // indirect
51-
github.com/mattn/go-runewidth v0.0.16 // indirect
51+
github.com/mattn/go-runewidth v0.0.19 // indirect
5252
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
5353
github.com/olekukonko/tablewriter v0.0.5
5454
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
55-
github.com/rivo/uniseg v0.4.7 // indirect
56-
github.com/spf13/afero v1.14.0 // indirect
57-
github.com/spf13/cast v1.7.1 // indirect
58-
github.com/spf13/pflag v1.0.6 // indirect
55+
github.com/spf13/afero v1.15.0 // indirect
56+
github.com/spf13/cast v1.10.0 // indirect
57+
github.com/spf13/pflag v1.0.10 // indirect
5958
github.com/subosito/gotenv v1.6.0 // indirect
6059
go.uber.org/multierr v1.11.0 // indirect
61-
golang.org/x/net v0.41.0 // indirect
62-
golang.org/x/sys v0.33.0 // indirect
63-
golang.org/x/term v0.32.0 // indirect
64-
golang.org/x/text v0.26.0 // indirect
65-
golang.org/x/tools v0.33.0 // indirect
60+
golang.org/x/net v0.48.0 // indirect
61+
golang.org/x/sys v0.40.0 // indirect
62+
golang.org/x/term v0.39.0 // indirect
63+
golang.org/x/text v0.33.0 // indirect
64+
golang.org/x/tools v0.40.0 // indirect
6665
gopkg.in/yaml.v3 v3.0.1
6766
)

0 commit comments

Comments
 (0)