diff options
author | Valery Piashchynski <[email protected]> | 2022-03-16 16:43:43 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-03-16 16:43:50 +0100 |
commit | 648c8c4eb3e3af729dc7b5fc15e9d5456f0d0a20 (patch) | |
tree | ddd8657ff220b3f6cf4731aab56371aa7550b615 /.github | |
parent | 68345431689eb40db94c7c2902b3ee471d6bef79 (diff) |
deps: update dependencies
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release_grpc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/tests.yml | 11 |
3 files changed, 5 insertions, 10 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 559e0f9f..51d4ad61 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17.8 + go-version: 1.18 - name: Check out code uses: actions/checkout@v3 diff --git a/.github/workflows/release_grpc.yml b/.github/workflows/release_grpc.yml index 6891de2f..dc8164bb 100644 --- a/.github/workflows/release_grpc.yml +++ b/.github/workflows/release_grpc.yml @@ -36,7 +36,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17.8 + go-version: 1.18 - name: Check out code uses: actions/checkout@v3 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8960d5ec..a9b5fe76 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -59,7 +59,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17.8 + go-version: 1.18 - name: Check out code uses: actions/checkout@v3 @@ -97,7 +97,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 # action page: <https://github.com/actions/setup-go> with: - go-version: 1.17.8 + go-version: 1.18 - name: Check out code uses: actions/checkout@v3 @@ -157,11 +157,6 @@ jobs: - uses: aquasecurity/[email protected] # action page: <https://github.com/aquasecurity/trivy-action> with: image-ref: rr:local - format: sarif + format: 'table' severity: MEDIUM,HIGH,CRITICAL exit-code: 1 - output: trivy-results.sarif - - - uses: github/codeql-action/upload-sarif@v1 - if: always() - with: {sarif_file: trivy-results.sarif} |