diff options
author | Valery Piashchynski <[email protected]> | 2023-02-02 11:55:52 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2023-02-02 11:55:52 +0100 |
commit | 9c7437dc0780180265d26e15c357761db8dc6d9d (patch) | |
tree | 8f87fd121b578bf6f8e4d11c71084b381d196e27 | |
parent | 37805c7faa49268835a76f70e0199dc122c5d43d (diff) |
chore(ci): update golangci-lint
-rw-r--r-- | .github/workflows/release.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release_dep.yml | 1 | ||||
-rw-r--r-- | .github/workflows/release_grpc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/tests.yml | 2 |
4 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bf9f4f29..8e82349a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: # ----- - os: '' compiler: musl-gcc # more info: <https://musl.libc.org/> - archiver: zip + archiver: tar arch: amd64 steps: - name: Set up Go diff --git a/.github/workflows/release_dep.yml b/.github/workflows/release_dep.yml index 14218554..982a124c 100644 --- a/.github/workflows/release_dep.yml +++ b/.github/workflows/release_dep.yml @@ -15,7 +15,6 @@ jobs: matrix: os: [ linux ] compiler: [ gcc ] - archiver: [ zip ] arch: [ amd64 ] steps: diff --git a/.github/workflows/release_grpc.yml b/.github/workflows/release_grpc.yml index 9211b279..32a209c3 100644 --- a/.github/workflows/release_grpc.yml +++ b/.github/workflows/release_grpc.yml @@ -40,7 +40,7 @@ jobs: #---------- - os: '' compiler: musl-gcc # more info: <https://musl.libc.org/> - archiver: zip + archiver: tar arch: amd64 steps: - name: Set up Go diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index edcc46c9..7654df87 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -45,7 +45,7 @@ jobs: - name: Run linter uses: golangci/[email protected] with: - version: v1.50 # without patch version + version: v1.51 # without patch version only-new-issues: false # show only new issues if it's a pull request args: --build-tags=safe --timeout=10m |