Skip to content

Bump docker/build-push-action from 4 to 5 #391

Bump docker/build-push-action from 4 to 5

Bump docker/build-push-action from 4 to 5 #391

Workflow file for this run

name: Lint
on: [pull_request]
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
permissions:
contents: read # for actions/checkout to fetch code
statuses: write # for github/super-linter/slim to mark status of each linter run
name: Super-Linter
runs-on: ubuntu-latest
steps:
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- uses: github/super-linter/slim@v5.0.0
env:
DEFAULT_BRANCH: main
ERROR_ON_MISSING_EXEC_BIT: true
VALIDATE_EDITORCONFIG: true
VALIDATE_ALL_CODEBASE: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}