diff options
author | Valery Piashchynski <[email protected]> | 2022-08-03 17:20:42 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-08-03 17:20:42 +0200 |
commit | 203c0f388b02d2a9aedb0cb19d89970af5e5fdcb (patch) | |
tree | ed875d8903c809f439478c24667068930a4ad2c6 /.github | |
parent | f85dd414a6425f390445f817eb40671d51ff2645 (diff) |
ci: go1.19
remove new_relic middleware
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release_dep.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release_grpc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/tests.yml | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 64ab21bb..aa364d92 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.19 - name: Check out code uses: actions/checkout@v3 diff --git a/.github/workflows/release_dep.yml b/.github/workflows/release_dep.yml index f11547c3..bda07b97 100644 --- a/.github/workflows/release_dep.yml +++ b/.github/workflows/release_dep.yml @@ -25,7 +25,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.19 - name: Download dependencies run: go mod download diff --git a/.github/workflows/release_grpc.yml b/.github/workflows/release_grpc.yml index 9964b6f6..c93c7b0c 100644 --- a/.github/workflows/release_grpc.yml +++ b/.github/workflows/release_grpc.yml @@ -46,7 +46,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.19 - name: Check out code uses: actions/checkout@v3 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8ac3a953..d524a5fb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -56,7 +56,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.19 - name: Check out code uses: actions/checkout@v3 @@ -94,7 +94,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 # action page: <https://github.com/actions/setup-go> with: - go-version: 1.18 + go-version: 1.19 - name: Check out code uses: actions/checkout@v3 |