Files
docker-build-action/.github/workflows/lint.yml
Renovate Bot 7e9cc4d017
Some checks failed
Actionlint / build (push) Failing after 17s
Update actions/checkout action to v5 #none major
2025-08-20 08:10:50 +00:00

30 lines
923 B
YAML

name: Actionlint
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
on:
push:
jobs:
build:
runs-on: slim
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Verify Action
run: actionlint -ignore 'unexpected key "description" for "workflow" section' -ignore 'nexpected key "inputs" for "workflow" section.' -ignore 'unexpected key "runs" for "workflow" section.' -ignore '"on" section is missing in workflow' -ignore '"jobs" section is missing in workflow' action.yml
- name: tag latest after success
if: github.ref == 'refs/heads/main'
id: tag
run: |
git tag -f latest
git push --tags -f