Skip to content

Bump docker/build-push-action from 5.1.0 to 6.4.0 #721

Bump docker/build-push-action from 5.1.0 to 6.4.0

Bump docker/build-push-action from 5.1.0 to 6.4.0 #721

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: cppcheck
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
permissions:
contents: read
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-20.04
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Harden Runner
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
with:
egress-policy: audit
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
submodules: recursive
# Runs a set of commands using the runners shell
- name: cppcheck
run: |
sudo apt-get update -qq
sudo apt-get install -qq -y cppcheck
sh ${{ github.workspace }}/scripts/cppcheck.sh . `getconf _NPROCESSORS_ONLN`