Skip to content

Bump chainguard-dev/common/infra from 0.6.19 to 0.6.46 in /iac/bootstrap in the all group across 1 directory #442

Bump chainguard-dev/common/infra from 0.6.19 to 0.6.46 in /iac/bootstrap in the all group across 1 directory

Bump chainguard-dev/common/infra from 0.6.19 to 0.6.46 in /iac/bootstrap in the all group across 1 directory #442

Workflow file for this run

# Copyright 2024 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. | xargs echo)"
echo "files=${yamls}" >> "$GITHUB_OUTPUT"
- name: Action lint
uses: reviewdog/action-actionlint@89a03f6ba8c0a9fd238e82c075ffb34b86e40291 # v1.46.0
with:
actionlint_flags: ${{ steps.get_yamls.outputs.files }}