mirror of
https://github.com/lunchcat/sif.git
synced 2026-07-08 13:27:16 -07:00
064484ff4d
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
693 B
YAML
27 lines
693 B
YAML
name: dependency review
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
dependency-review:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repository
|
|
uses: actions/checkout@v7
|
|
- name: dependency review
|
|
uses: actions/dependency-review-action@v5
|
|
continue-on-error: ${{ github.event_name == 'push' }}
|
|
- name: check dependency review outcome
|
|
if: github.event_name == 'push' && failure()
|
|
run: |
|
|
echo "::warning::Dependency review failed. Please check the dependencies for potential issues."
|