Skip to content

Commit 50d5bdc

Browse files
authored
ci: fix failing nightly builds (#657)
Signed-off-by: Ramkumar Chinchani <[email protected]>
1 parent f6d1a69 commit 50d5bdc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ jobs:
105105
with:
106106
token: ${{ secrets.codecov_token }}
107107
- name: Upload artifacts
108-
uses: actions/upload-artifact@v3
109-
if: ${{ matrix.privilege-level == 'priv' }}
108+
uses: actions/upload-artifact@v4
109+
if: ${{ (matrix.privilege-level == 'priv') && (matrix.go-version == '1.23.x') }}
110110
with:
111111
# if there is more than 1 go-version, we would need to account for that here.
112112
name: binary

.github/workflows/coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ jobs:
103103
token: ${{ secrets.codecov_token }}
104104
files: coverage-${{ matrix.privilege-level}}.txt
105105
- name: Upload artifacts
106-
uses: actions/upload-artifact@v3
107-
if: ${{ matrix.privilege-level == 'priv' }}
106+
uses: actions/upload-artifact@v4
107+
if: ${{ (matrix.privilege-level == 'priv') && (matrix.go-version == '1.23.x') }}
108108
with:
109109
# if there is more than 1 go-version, we would need to account for that here.
110110
name: binary-cov

0 commit comments

Comments
 (0)