Skip to content

Commit fdcc58d

Browse files
authored
Update Go dependencies and actions/checkout (#345)
* Update Go dependencies and actions/checkout * Try new background step Actions syntax
1 parent e0458ce commit fdcc58d

6 files changed

Lines changed: 103 additions & 38 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
timeout-minutes: 360
2323
steps:
24-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@v7
2525

2626
- name: Set Env
2727
uses: Chia-Network/actions/setjobenv@main

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v6
16+
uses: actions/checkout@v7
1717

1818
- name: Set Env
1919
uses: Chia-Network/actions/setjobenv@main

.github/workflows/smoke.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v6
13+
uses: actions/checkout@v7
1414
with:
1515
fetch-depth: 0
1616

@@ -27,8 +27,9 @@ jobs:
2727
make install
2828
2929
- name: Run the operator in the background
30-
run: |
31-
make run &
30+
id: operator
31+
background: true
32+
run: make run
3233

3334
- name: Install chia components
3435
run: |
@@ -204,3 +205,6 @@ jobs:
204205
exit 1
205206
fi
206207
echo "Expected 1 endpoint, found $service_endpoints_number"
208+
209+
- name: Stop operator
210+
cancel: operator

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: Chia-Network/actions/git-mark-workspace-safe@main
1818

1919
- name: Checkout Code
20-
uses: actions/checkout@v6
20+
uses: actions/checkout@v7
2121
with:
2222
fetch-depth: 0
2323

@@ -34,7 +34,7 @@ jobs:
3434
timeout-minutes: 10
3535
container: golang:1
3636
steps:
37-
- uses: actions/checkout@v6
37+
- uses: actions/checkout@v7
3838

3939
- name: Check for git diffs
4040
shell: bash
@@ -68,7 +68,7 @@ jobs:
6868
runs-on: ubuntu-latest
6969
steps:
7070
- name: 'Checkout Repository'
71-
uses: actions/checkout@v6
71+
uses: actions/checkout@v7
7272

7373
- name: 'Dependency Review'
7474
uses: actions/dependency-review-action@v4
@@ -83,7 +83,7 @@ jobs:
8383
run: apk add git
8484

8585
- name: 'Checkout Repository'
86-
uses: actions/checkout@v6
86+
uses: actions/checkout@v7
8787

8888
- name: 'Lint Markdown'
8989
# MD013 lints for long lines, ignoring because GitHub's markdown viewer wraps long lines anyway.

go.mod

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ require (
99
github.com/onsi/gomega v1.39.0
1010
github.com/prometheus/client_golang v1.23.2
1111
github.com/stretchr/testify v1.11.1
12-
k8s.io/api v0.36.0
13-
k8s.io/apimachinery v0.36.0
14-
k8s.io/client-go v0.36.0
12+
k8s.io/api v0.36.2
13+
k8s.io/apimachinery v0.36.2
14+
k8s.io/client-go v0.36.2
1515
k8s.io/klog/v2 v2.140.0
16-
k8s.io/utils v0.0.0-20260507154919-ff6756f316d2
17-
sigs.k8s.io/controller-runtime v0.24.0
16+
k8s.io/utils v0.0.0-20260626114624-be93311217bd
17+
sigs.k8s.io/controller-runtime v0.24.1
1818
sigs.k8s.io/yaml v1.6.0
1919
)
2020

@@ -31,19 +31,19 @@ require (
3131
github.com/go-logr/logr v1.4.3 // indirect
3232
github.com/go-logr/zapr v1.3.0 // indirect
3333
github.com/go-openapi/jsonpointer v0.23.1 // indirect
34-
github.com/go-openapi/jsonreference v0.21.5 // indirect
35-
github.com/go-openapi/swag v0.26.0 // indirect
36-
github.com/go-openapi/swag/cmdutils v0.26.0 // indirect
37-
github.com/go-openapi/swag/conv v0.26.0 // indirect
38-
github.com/go-openapi/swag/fileutils v0.26.0 // indirect
39-
github.com/go-openapi/swag/jsonname v0.26.0 // indirect
40-
github.com/go-openapi/swag/jsonutils v0.26.0 // indirect
41-
github.com/go-openapi/swag/loading v0.26.0 // indirect
42-
github.com/go-openapi/swag/mangling v0.26.0 // indirect
43-
github.com/go-openapi/swag/netutils v0.26.0 // indirect
44-
github.com/go-openapi/swag/stringutils v0.26.0 // indirect
45-
github.com/go-openapi/swag/typeutils v0.26.0 // indirect
46-
github.com/go-openapi/swag/yamlutils v0.26.0 // indirect
34+
github.com/go-openapi/jsonreference v0.21.6 // indirect
35+
github.com/go-openapi/swag v0.26.1 // indirect
36+
github.com/go-openapi/swag/cmdutils v0.26.1 // indirect
37+
github.com/go-openapi/swag/conv v0.26.1 // indirect
38+
github.com/go-openapi/swag/fileutils v0.26.1 // indirect
39+
github.com/go-openapi/swag/jsonname v0.26.1 // indirect
40+
github.com/go-openapi/swag/jsonutils v0.26.1 // indirect
41+
github.com/go-openapi/swag/loading v0.26.1 // indirect
42+
github.com/go-openapi/swag/mangling v0.26.1 // indirect
43+
github.com/go-openapi/swag/netutils v0.26.1 // indirect
44+
github.com/go-openapi/swag/stringutils v0.26.1 // indirect
45+
github.com/go-openapi/swag/typeutils v0.26.1 // indirect
46+
github.com/go-openapi/swag/yamlutils v0.26.1 // indirect
4747
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
4848
github.com/google/gnostic-models v0.7.1 // indirect
4949
github.com/google/pprof v0.0.0-20260115054156-294ebfa9ad83 // indirect
@@ -54,31 +54,31 @@ require (
5454
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5555
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
5656
github.com/prometheus/client_model v0.6.2 // indirect
57-
github.com/prometheus/common v0.67.5 // indirect
57+
github.com/prometheus/common v0.69.0 // indirect
5858
github.com/prometheus/procfs v0.20.1 // indirect
59-
github.com/samber/mo v1.16.0 // indirect
59+
github.com/samber/mo v1.17.0 // indirect
6060
github.com/spf13/pflag v1.0.10 // indirect
6161
github.com/x448/float16 v0.8.4 // indirect
6262
go.uber.org/multierr v1.11.0 // indirect
6363
go.uber.org/zap v1.28.0 // indirect
6464
go.yaml.in/yaml/v2 v2.4.4 // indirect
6565
go.yaml.in/yaml/v3 v3.0.4 // indirect
66-
golang.org/x/mod v0.34.0 // indirect
67-
golang.org/x/net v0.53.0 // indirect
66+
golang.org/x/mod v0.36.0 // indirect
67+
golang.org/x/net v0.56.0 // indirect
6868
golang.org/x/oauth2 v0.36.0 // indirect
69-
golang.org/x/sync v0.20.0 // indirect
70-
golang.org/x/sys v0.43.0 // indirect
71-
golang.org/x/term v0.42.0 // indirect
72-
golang.org/x/text v0.36.0 // indirect
69+
golang.org/x/sync v0.21.0 // indirect
70+
golang.org/x/sys v0.46.0 // indirect
71+
golang.org/x/term v0.44.0 // indirect
72+
golang.org/x/text v0.38.0 // indirect
7373
golang.org/x/time v0.15.0 // indirect
74-
golang.org/x/tools v0.43.0 // indirect
74+
golang.org/x/tools v0.45.0 // indirect
7575
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
7676
google.golang.org/protobuf v1.36.12-0.20260120151049-f2248ac996af // indirect
7777
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
7878
gopkg.in/inf.v0 v0.9.1 // indirect
7979
gopkg.in/yaml.v3 v3.0.1 // indirect
80-
k8s.io/apiextensions-apiserver v0.36.0 // indirect
81-
k8s.io/kube-openapi v0.0.0-20260505163821-33341827b392 // indirect
80+
k8s.io/apiextensions-apiserver v0.36.2 // indirect
81+
k8s.io/kube-openapi v0.0.0-20260624041617-8f3fa4921821 // indirect
8282
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
8383
sigs.k8s.io/randfill v1.0.0 // indirect
8484
sigs.k8s.io/structured-merge-diff/v6 v6.4.0 // indirect

0 commit comments

Comments
 (0)