-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rekres, fix linting errors. Signed-off-by: Andrey Smirnov <[email protected]>
- Loading branch information
Showing
10 changed files
with
118 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ | |
|
||
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. | ||
# | ||
# Generated on 2023-10-04T08:57:47Z by kres latest. | ||
# Generated on 2024-02-16T10:31:01Z by kres latest. | ||
|
||
ARG TOOLCHAIN | ||
|
||
# runs markdownlint | ||
FROM docker.io/node:20.8.0-alpine3.18 AS lint-markdown | ||
FROM docker.io/node:21.6.1-alpine3.19 AS lint-markdown | ||
WORKDIR /src | ||
RUN npm i -g markdownlint-cli@0.37.0 | ||
RUN npm i -g markdownlint-cli@0.39.0 | ||
RUN npm i [email protected] | ||
COPY .markdownlint.json . | ||
COPY ./README.md ./README.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,32 @@ | ||
module github.com/siderolabs/go-api-signature | ||
|
||
go 1.21.1 | ||
go 1.22.0 | ||
|
||
require ( | ||
github.com/ProtonMail/go-crypto v0.0.0-20230717121422-5aa5874ade95 | ||
github.com/ProtonMail/gopenpgp/v2 v2.7.2 | ||
github.com/ProtonMail/go-crypto v1.0.0 | ||
github.com/ProtonMail/gopenpgp/v2 v2.7.5 | ||
github.com/adrg/xdg v0.4.0 | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.2 | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 | ||
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c | ||
github.com/stretchr/testify v1.8.4 | ||
google.golang.org/grpc v1.57.0 | ||
google.golang.org/protobuf v1.31.0 | ||
google.golang.org/grpc v1.61.1 | ||
google.golang.org/protobuf v1.32.0 | ||
) | ||
|
||
require ( | ||
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect | ||
github.com/cloudflare/circl v1.3.3 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rogpeppe/go-internal v1.10.0 // indirect | ||
golang.org/x/crypto v0.11.0 // indirect | ||
golang.org/x/net v0.12.0 // indirect | ||
golang.org/x/sys v0.10.0 // indirect | ||
golang.org/x/text v0.11.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230726155614-23370e0ffb3e // indirect | ||
golang.org/x/crypto v0.18.0 // indirect | ||
golang.org/x/net v0.20.0 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.