mirror of
https://github.com/drwetter/testssl.sh.git
synced 2024-12-29 04:49:44 +01:00
2d03d82fd9
- Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
52 lines
1.0 KiB
YAML
52 lines
1.0 KiB
YAML
name: testssl.sh CI
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'utils/**'
|
|
- 'doc/**'
|
|
- 'bin/**'
|
|
- '**.md'
|
|
- '**.pem'
|
|
- '**.pdf'
|
|
- '**.html'
|
|
- 'LICENSE'
|
|
- 'Dockerfile'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'utils/**'
|
|
- 'doc/**'
|
|
- 'bin/**'
|
|
- '**.md'
|
|
- '**.pem'
|
|
- '**.pdf'
|
|
- '**.html'
|
|
- 'LICENSE'
|
|
- 'Dockerfile'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: ['ubuntu-20.04']
|
|
perl: ['5.26']
|
|
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up perl
|
|
uses: shogo82148/actions-setup-perl@v1
|
|
with:
|
|
perl-version: ${{ matrix.perl }}
|
|
- run: perl -V
|
|
- name: Install deps
|
|
run: sudo apt install dnsutils jsonlint
|
|
- run: cpanm --notest Test::More
|
|
- run: cpanm --notest Data::Dumper
|
|
- run: cpanm --notest JSON
|
|
- run: cpanm --notest Text::Diff
|
|
- run: prove -v
|