Skip to content

Bump reviewdog/action-actionlint from 1.45.0 to 1.46.0 #373

Bump reviewdog/action-actionlint from 1.45.0 to 1.46.0

Bump reviewdog/action-actionlint from 1.45.0 to 1.46.0 #373

Workflow file for this run

# Copyright 2022 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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- 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@89a03f6ba8c0a9fd238e82c075ffb34b86e40291 # v1.46.0
with:
actionlint_flags: ${{ steps.get_yamls.outputs.files }}