ci: Bump actions/upload-artifact from 4 to 6 #45
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
| name: DCO Check | |
| on: | |
| pull_request: | |
| branches: [main] | |
| pull_request_target: | |
| branches: [main] | |
| jobs: | |
| dco: | |
| name: DCO Sign-off Check | |
| runs-on: ubuntu-latest | |
| # Skip DCO check for bot accounts | |
| if: github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]' | |
| steps: | |
| - name: Check DCO | |
| uses: dkhamsing/[email protected] | |
| with: | |
| fail-on-missing: true |