Skip to content

Commit 60bc79c

Browse files
authored
[chore] Bump go-version match to 1.23 (#38099)
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description This should have been bumped when bumping the Go version to 1.23, otherwise this code does nothing
1 parent 187259e commit 60bc79c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,13 +289,13 @@ jobs:
289289
path: ~/.cache/go-build
290290
key: go-test-build-${{ runner.os }}-${{ matrix.go-version }}-${{ matrix.runner }}-${{ hashFiles('**/go.sum') }}
291291
- name: Run Unit Tests
292-
if: startsWith( matrix.go-version, '1.22' ) != true
292+
if: startsWith( matrix.go-version, '1.23' ) != true
293293
run: make gotest GROUP=${{ matrix.group }}
294294
- name: Run Unit Tests With Coverage
295-
if: startsWith( matrix.go-version, '1.22' ) # only run coverage on one version
295+
if: startsWith( matrix.go-version, '1.23' ) # only run coverage on one version
296296
run: make gotest-with-cover GROUP=${{ matrix.group }}
297297
- uses: actions/upload-artifact@v4
298-
if: startsWith( matrix.go-version, '1.22' ) # only upload artifact for one version
298+
if: startsWith( matrix.go-version, '1.23' ) # only upload artifact for one version
299299
with:
300300
name: coverage-artifacts-${{ matrix.go-version }}-${{ matrix.runner }}-${{ matrix.group }}
301301
path: ${{ matrix.group }}-coverage.txt

0 commit comments

Comments
 (0)