Skip to content

Bump github.com/google/go-containerregistry from 0.19.2 to 0.20.0 #153

Bump github.com/google/go-containerregistry from 0.19.2 to 0.20.0

Bump github.com/google/go-containerregistry from 0.19.2 to 0.20.0 #153

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- 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@d99f1ceaf59e7db022a790dc308ccccb68dda71a # v1.53.0
with:
actionlint_flags: ${{ steps.get_yamls.outputs.files }}