chore(deps): bump Hack23/riksdagsmonitor/.github/actions/news-prewarm from a9014fb7edc152cbc6cad7b6cc6fc79f59dc80a4 to b6c01e60c557e480bd2c6f625afbada37127b0e9 #7227
Workflow file for this run
This file contains hidden or 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
| # Dependency Review Action | |
| # | |
| # This Action will scan dependency manifest files that change as part of a Pull Request, | |
| # surfacing known-vulnerable versions of the packages declared or updated in the PR. | |
| # Once installed, if the workflow run is marked as required, | |
| # PRs introducing known-vulnerable packages will be blocked from merging. | |
| # | |
| # Source repository: https://github.com/actions/dependency-review-action | |
| name: 'Dependency Review' | |
| on: [pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| dependency-review: | |
| runs-on: ubuntu-26.04 | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0 | |
| with: | |
| egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
| - name: 'Checkout Repository' | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Cache apt packages | |
| uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 | |
| with: | |
| path: /var/cache/apt/archives | |
| # v2 key prefix intentionally busts legacy apt cache generations. | |
| key: ${{ runner.os }}-apt-v2-dependency-review-${{ hashFiles('.github/workflows/dependency-review.yml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-apt-v2-dependency-review- | |
| ${{ runner.os }}-apt- | |
| - name: 'Dependency Review' | |
| uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0 | |
| with: | |
| comment-summary-in-pr: always |