Skip to content

Bump actions/checkout from 3 to 4 #70

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #70

Workflow file for this run

# Copyright 2023 Chainguard, Inc.
# SPDX-License-Identifier: Apache-2.0
name: Action Lint
on:
pull_request:
branches: [ 'main', 'release-*' ]
jobs:
action-lint:
name: Action lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v3.5.2
- name: Find yamls
id: get_yamls
run: |
yamls=$(find .github/workflows -name "*.y*ml" | grep -v dependabot.)
echo "files="${yamls}"" >> $GITHUB_OUTPUT
- name: Action lint
uses: reviewdog/action-actionlint@42de1e3a0f52d5f8b8390894de87bc603844e530 # v1.37.0
with:
actionlint_flags: ${{ steps.get_yamls.outputs.files }}