Bump google/osv-scanner-action from 1.7.4 to 1.8.1 #288
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: PerlCritic | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
check: | |
name: Check with PerlCritic | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install PerlCritic | |
run: | | |
sudo apt update -y | |
sudo apt install libperl-critic-perl | |
- name: Run PerlCritic | |
run: perlcritic *kml* |