chore(deps): update dependency go to v1.25.4 #230
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: Push/PR | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| - renovate/** | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| static-analysis: | |
| name: Run static analysis checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'tests/integration/go.mod' | |
| - uses: newrelic/newrelic-infra-checkers@v1 | |
| with: | |
| golangci-lint-config: golangci-lint-limited | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v7 | |
| continue-on-error: ${{ github.event_name != 'pull_request' }} | |
| with: | |
| version: v2.6.0 | |
| only-new-issues: true | |
| working-directory: tests/integration/ | |
| - name: Check if CHANGELOG is valid | |
| uses: newrelic/release-toolkit/validate-markdown@v1 | |
| integration-test: | |
| name: 🚧 integration tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| arch: [ arm64, amd64 ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login to DockerHub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.OHAI_DOCKER_HUB_ID }} | |
| password: ${{ secrets.OHAI_DOCKER_HUB_PASSWORD }} | |
| - name: Running integration tests | |
| run: | | |
| make integration-tests-${{ matrix.arch }} |