⬆️ Update 👷 GitHub Action actions/upload-artifact to 5076954 #1493
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: Lint Actions | |
on: | |
pull_request: | |
paths: [.github/**.yml] | |
types: [synchronize, edited, opened] | |
push: | |
paths: [.github/**.yml] | |
jobs: | |
skip: | |
name: Check Duplicate Actions | |
#continue-on-error: true | |
runs-on: ubuntu-latest | |
outputs: | |
should-skip: ${{ steps.skip-check.outputs.should_skip }} | |
steps: | |
- name: Skip Duplicate Actions (Lint Actions) | |
uses: fkirc/skip-duplicate-actions@f75f66ce1886f00957d99748a42c724f4330bdcf # v5 | |
id: skip-check | |
actions: | |
name: Action Workflows | |
runs-on: ubuntu-latest | |
needs: skip | |
if: needs.skip.outputs.should-skip != 'true' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Review Dog - actionlint | |
uses: reviewdog/action-actionlint@4f8f9963ca57a41e5fd5b538dd79dbfbd3e0b38a # v1 | |
yaml: | |
name: YAML | |
runs-on: ubuntu-latest | |
needs: skip | |
if: needs.skip.outputs.should-skip != 'true' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Review Dog - yamllint | |
uses: reviewdog/action-yamllint@4e4ba96d03a0e12a0e71c29e5fef1db309d09201 # v1 | |
with: | |
yamllint_flags: >- | |
--config-file ${{github.workspace}}/.github/settings/yamllint.yml | |
${{github.workspace}} |