Skip to content

[Snyk] Upgrade react-svg from 14.1.6 to 14.1.19 #3010

[Snyk] Upgrade react-svg from 14.1.6 to 14.1.19

[Snyk] Upgrade react-svg from 14.1.6 to 14.1.19 #3010

Workflow file for this run

# 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: Api
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions: read-all
jobs:
lint-coverage-build-security:
runs-on: ubuntu-latest
defaults:
run:
working-directory: api
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: 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-Api" --show-vulnerabilities-types="Vulnerability, Risk Accepted"