Merge branch 'master' into doc/update_salt-api_documentation

This commit is contained in:
Carlos D. Álvaro
2020-10-17 11:39:09 +02:00
committed by GitHub
4 changed files with 29 additions and 3 deletions

24
.github/workflows/linter.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: Lint Code
on:
pull_request:
branches:
- master
jobs:
lint:
name: Super Linter
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Lint code base
uses: github/super-linter@v3
env:
VALIDATE_DOCKERFILE_HADOLINT: true
VALIDATE_BASH: true
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -96,7 +96,6 @@ jobs:
name: Security analysis
runs-on: ubuntu-latest
needs: publish
if: github.event_name == 'release'
steps:
- name: Prepare metadata
id: metadata

View File

@@ -1,11 +1,11 @@
name: "Code Scanning"
name: Security analysis
on:
schedule:
- cron: '0 0 * * 1'
jobs:
code-scan:
security-analysis:
name: Trivy scan
runs-on: ubuntu-latest

View File

@@ -1,6 +1,9 @@
# Check shellcheck wiki at:
# https://github.com/koalaman/shellcheck/wiki/SCXXXX
# Allow following non-constant source
disable=SC1090
# Redirections are performed by the current shell before sudo is started.
disable=SC2024