Bump actions/dependency-review-action from 4.3.5 to 4.4.0 #336
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: Set REPOSITORY | |
run: echo "REPOSITORY=${GITHUB_REPOSITORY#*/}" >> "${GITHUB_ENV}" | |
- name: Check out | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install PerlCritic | |
run: | | |
sudo apt update -y | |
sudo apt install libperl-critic-perl | |
- name: Run PerlCritic | |
run: perlcritic ${REPOSITORY} |