fix(deps): update go dependencies #5091
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test (Windows) | |
| on: | |
| push: | |
| # TODO: Also run the tests when a Windows-specific features is changed. | |
| # For example, the Windows Exporter for Prometheus and Event Log tailers. | |
| branches: | |
| - main | |
| # TODO: Run the Windows tests for each PR? | |
| # For now we don't do it just because it takes time. | |
| pull_request: | |
| types: [labeled, opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test_windows: | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'os:windows') || github.event_name == 'push' || github.event_name == 'merge_group' }} | |
| name: Test (Windows) | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Go | |
| uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| with: | |
| go-version-file: go.mod | |
| # TODO: Enable caching later. | |
| # We'll need to make sure the same cache is reused by the workflow to build Windows binaries. | |
| cache: false | |
| - name: Test | |
| run: '& "C:/Program Files/git/bin/bash.exe" -c ''go test -tags="nodocker,nonetwork,slicelabels" | |
| $(go list ./... | grep -v /integration-tests/)''' |