Skip to content

chore(deps): bump chainguard-dev/actions from 1.6.21 to 1.6.22 in the actions group #37

chore(deps): bump chainguard-dev/actions from 1.6.21 to 1.6.22 in the actions group

chore(deps): bump chainguard-dev/actions from 1.6.21 to 1.6.22 in the actions group #37

Workflow file for this run

name: Action Lint
on:
pull_request:
branches: ['main']
paths:
- '.github/workflows/**'
- '.github/actions/**'
push:
branches: ['main']
paths:
- '.github/workflows/**'
- '.github/actions/**'
permissions: {}
jobs:
action-lint:
permissions:
contents: read # Clone the repository
name: Action lint
runs-on: ubuntu-latest
steps:
- uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: block
allowed-endpoints: >
*.githubapp.com:443
api.github.com:443
github.com:443
go.dev:443
hooks.slack.com:443
release-assets.githubusercontent.com:443
- name: Check out code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: Find yamls
id: get_yamls
run: |
set -ex
mapfile -t yamls < <(find .github/workflows -name "*.y*ml" | grep -v dependabot.)
echo "files=${yamls[*]}" >> "${GITHUB_OUTPUT}"
- name: Action lint
uses: step-security/action-actionlint@c3aa382d371c6b05513ae5907d4f77713e21813c # v1.72.0
env:
SHELLCHECK_OPTS: "--exclude=SC2129"
with:
actionlint_flags: ${{ steps.get_yamls.outputs.files }}