chore(deps): update github/codeql-action action to v3 #160
Workflow file for this run
This file contains 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: | |
env: | |
TAG: "v0.0.0" # needed for goreleaser windows builds | |
REPO_FULL_NAME: ${{ github.event.repository.full_name }} | |
ORIGINAL_REPO_NAME: "newrelic/nri-mongodb" | |
DOCKER_LOGIN_AVAILABLE: ${{ secrets.OHAI_DOCKER_HUB_ID }} | |
jobs: | |
static-analysis: | |
name: Run all static analysis checks | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: newrelic/newrelic-infra-checkers@v1 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
continue-on-error: ${{ github.event_name != 'pull_request' }} | |
with: | |
only-new-issues: true | |
- name: Check if CHANGELOG is valid | |
uses: newrelic/release-toolkit/validate-markdown@v1 | |
snyk: | |
name: Run security checks via snyk | |
runs-on: ubuntu-22.04 | |
env: | |
SNYK_TOKEN: ${{ secrets.COREINT_SNYK_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Login to DockerHub | |
if: ${{env.DOCKER_LOGIN_AVAILABLE}} | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.OHAI_DOCKER_HUB_ID }} | |
password: ${{ secrets.OHAI_DOCKER_HUB_PASSWORD }} | |
- name: Scan code for vulnerabilities | |
if: ${{env.SNYK_TOKEN}} | |
run: make ci/snyk-test | |
test-nix: | |
name: Run unit tests on *Nix | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Login to DockerHub | |
if: ${{env.DOCKER_LOGIN_AVAILABLE}} | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.OHAI_DOCKER_HUB_ID }} | |
password: ${{ secrets.OHAI_DOCKER_HUB_PASSWORD }} | |
- name: Unit tests | |
run: make ci/test | |
test-windows: | |
name: Run unit tests on Windows | |
runs-on: windows-2022 | |
env: | |
GOPATH: ${{ github.workspace }} | |
defaults: | |
run: | |
working-directory: src/github.com/${{ env.ORIGINAL_REPO_NAME }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
path: src/github.com/${{env.ORIGINAL_REPO_NAME}} | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: "src/github.com/${{ env.ORIGINAL_REPO_NAME }}/go.mod" | |
- name: Running unit tests | |
shell: pwsh | |
run: | | |
.\build\windows\unit_tests.ps1 | |
test-integration-nix: | |
name: Run integration tests on *Nix | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
path: src/github.com/${{env.ORIGINAL_REPO_NAME}} | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: "src/github.com/${{ env.ORIGINAL_REPO_NAME }}/go.mod" | |
- name: Login to DockerHub | |
if: ${{env.DOCKER_LOGIN_AVAILABLE}} | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.OHAI_DOCKER_HUB_ID }} | |
password: ${{ secrets.OHAI_DOCKER_HUB_PASSWORD }} | |
- name: Integration test | |
env: | |
GOPATH: ${{ github.workspace }} | |
run: make integration-test | |
test-build: | |
name: Test binary compilation for all platforms:arch | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Login to DockerHub | |
if: ${{env.DOCKER_LOGIN_AVAILABLE}} | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.OHAI_DOCKER_HUB_ID }} | |
password: ${{ secrets.OHAI_DOCKER_HUB_PASSWORD }} | |
- name: Build all platforms:arch | |
run: make ci/build |