Skip to content

fix: unset ports in endpointslices #4701

fix: unset ports in endpointslices

fix: unset ports in endpointslices #4701

Workflow file for this run

name: pr
on: [ pull_request ]
permissions:
contents: read
env:
TESTCONTAINERS_RYUK_DISABLED: true
jobs:
semgrep:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
container:
image: returntocorp/semgrep
steps:
# Retrieve the source code for the repository
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
# Fetch the semgrep rules
- run: git clone https://github.com/dgryski/semgrep-go.git
# Run the rule checker using the fetched rules
- run: semgrep ci -f semgrep-go
check-race:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
with:
# https://www.npmjs.com/package/semver#caret-ranges-123-025-004
go-version: "^1.21"
check-latest: true
- run: go version
- run: make deps
- run: make check-race
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
with:
# https://www.npmjs.com/package/semver#caret-ranges-123-025-004
go-version: "^1.21"
check-latest: true
- run: go version
- run: make deps
- run: make check-fmt
- run: make vet
- run: make staticcheck
- run: make shortcheck