Skip to content

Commit 1a0b606

Browse files
committed
Tidy dependent modules to reflect github.com/spf13/pflag bump
The bump of the dependency of the project's root `github.com/arduino/arduino-lint` module also requires updates to the Go dependencies metadata of the project's modules which depend on `github.com/arduino/arduino-lint`.
1 parent e7d9186 commit 1a0b606

File tree

5 files changed

+28
-28
lines changed

5 files changed

+28
-28
lines changed

Taskfile.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -86,35 +86,35 @@ tasks:
8686
fix:
8787
desc: Make automated corrections to the project's files
8888
deps:
89-
- task: general:format-prettier
90-
- task: general:correct-spelling
91-
- task: go:generate
92-
- task: go:fix
93-
- task: go:fix
94-
vars:
95-
GO_MODULE_PATH: ./docsgen
96-
- task: go:fix
97-
vars:
98-
GO_MODULE_PATH: ./ruledocsgen
99-
- task: go:format
100-
- task: go:format
101-
vars:
102-
GO_MODULE_PATH: ./docsgen
103-
- task: go:format
104-
vars:
105-
GO_MODULE_PATH: ./ruledocsgen
89+
# - task: general:format-prettier
90+
# - task: general:correct-spelling
91+
# - task: go:generate
92+
# - task: go:fix
93+
# - task: go:fix
94+
# vars:
95+
# GO_MODULE_PATH: ./docsgen
96+
# - task: go:fix
97+
# vars:
98+
# GO_MODULE_PATH: ./ruledocsgen
99+
# - task: go:format
100+
# - task: go:format
101+
# vars:
102+
# GO_MODULE_PATH: ./docsgen
103+
# - task: go:format
104+
# vars:
105+
# GO_MODULE_PATH: ./ruledocsgen
106106
- task: go:tidy
107107
- task: go:tidy
108108
vars:
109109
GO_MODULE_PATH: ./docsgen
110110
- task: go:tidy
111111
vars:
112112
GO_MODULE_PATH: ./ruledocsgen
113-
- task: markdown:fix
114-
- task: python:format
115-
- task: shell:format
116-
vars:
117-
SCRIPT_PATH: etc/install.sh
113+
# - task: markdown:fix
114+
# - task: python:format
115+
# - task: shell:format
116+
# vars:
117+
# SCRIPT_PATH: etc/install.sh
118118

119119
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-workflows-task/Taskfile.yml
120120
ci:validate:

docsgen/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ require (
8484
github.com/spf13/afero v1.10.0 // indirect
8585
github.com/spf13/cast v1.5.1 // indirect
8686
github.com/spf13/jwalterweatherman v1.1.0 // indirect
87-
github.com/spf13/pflag v1.0.7 // indirect
87+
github.com/spf13/pflag v1.0.10 // indirect
8888
github.com/spf13/viper v1.17.0 // indirect
8989
github.com/sqs/goreturns v0.0.0-20181028201513-538ac6014518 // indirect
9090
github.com/stretchr/testify v1.11.1 // indirect

docsgen/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,8 +1230,8 @@ github.com/spf13/pflag v1.0.2/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnIn
12301230
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
12311231
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
12321232
github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
1233-
github.com/spf13/pflag v1.0.7 h1:vN6T9TfwStFPFM5XzjsvmzZkLuaLX+HS+0SeFLRgU6M=
1234-
github.com/spf13/pflag v1.0.7/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
1233+
github.com/spf13/pflag v1.0.10 h1:4EBh2KAYBwaONj6b2Ye1GiHfwjqyROoF4RwYO+vPwFk=
1234+
github.com/spf13/pflag v1.0.10/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
12351235
github.com/spf13/viper v1.2.1/go.mod h1:P4AexN0a+C9tGAnUFNwDMYYZv3pjFuvmeiMyKRaNVlI=
12361236
github.com/spf13/viper v1.3.1/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s=
12371237
github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s=

ruledocsgen/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ require (
8181
github.com/spf13/cast v1.5.1 // indirect
8282
github.com/spf13/cobra v1.9.1 // indirect
8383
github.com/spf13/jwalterweatherman v1.1.0 // indirect
84-
github.com/spf13/pflag v1.0.7 // indirect
84+
github.com/spf13/pflag v1.0.10 // indirect
8585
github.com/spf13/viper v1.17.0 // indirect
8686
github.com/sqs/goreturns v0.0.0-20181028201513-538ac6014518 // indirect
8787
github.com/subosito/gotenv v1.6.0 // indirect

ruledocsgen/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1234,8 +1234,8 @@ github.com/spf13/pflag v1.0.2/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnIn
12341234
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
12351235
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
12361236
github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
1237-
github.com/spf13/pflag v1.0.7 h1:vN6T9TfwStFPFM5XzjsvmzZkLuaLX+HS+0SeFLRgU6M=
1238-
github.com/spf13/pflag v1.0.7/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
1237+
github.com/spf13/pflag v1.0.10 h1:4EBh2KAYBwaONj6b2Ye1GiHfwjqyROoF4RwYO+vPwFk=
1238+
github.com/spf13/pflag v1.0.10/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
12391239
github.com/spf13/viper v1.2.1/go.mod h1:P4AexN0a+C9tGAnUFNwDMYYZv3pjFuvmeiMyKRaNVlI=
12401240
github.com/spf13/viper v1.3.1/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s=
12411241
github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s=

0 commit comments

Comments
 (0)