deps:chore - update Node.js to v16.15.1 #3034
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
# Copyright 2021 ZUP IT SERVICOS EM TECNOLOGIA E INOVACAO SA | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: Analytic | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
permissions: read-all | |
jobs: | |
lint-coverage-build-security: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: analytic | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '^1.16.4' | |
- name: lint | |
run: make lint | |
- name: test | |
run: make test | |
- name: coverage | |
run: make coverage | |
- name: build | |
run: make build | |
- name: Check go mod tidy diff | |
run: if [ $(go mod tidy && git diff | wc -l) -gt 0 ]; then git diff && exit 1; fi | |
- name: security | |
env: | |
HORUSEC_CLI_REPOSITORY_AUTHORIZATION: ${{ secrets.HORUSEC_CLI_REPOSITORY_AUTHORIZATION }} | |
HORUSEC_CLI_HORUSEC_API_URI: ${{ secrets.HORUSEC_CLI_HORUSEC_API_URI }} | |
REPOSITORY_OWNER: ${{ github.event.pull_request.head.repo.full_name }} | |
run: | | |
curl -fsSL https://raw.githubusercontent.com/ZupIT/horusec/main/deployments/scripts/install.sh | bash -s latest-rc | |
horusec start -p . -e=$(if [ "$REPOSITORY_OWNER" == "ZupIT/horusec" ]; then echo "true"; else echo "false"; fi) -G -n="Horusec/Platform-Analytic" --show-vulnerabilities-types="Vulnerability, Risk Accepted" |