Skip to content

chore(deps): update docker/build-push-action digest to 2a53c6c #9997

chore(deps): update docker/build-push-action digest to 2a53c6c

chore(deps): update docker/build-push-action digest to 2a53c6c #9997

Workflow file for this run

name: Golang lint, golic, gokart and test
on:
push:
paths-ignore:
- '**.md'
- '**.svg'
- '**.drawio'
- '.spelling'
pull_request:
branches:
- master
paths-ignore:
- '**.md'
- '**.svg'
- '**.drawio'
- '.spelling'
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
skip-check:
permissions:
actions: write # for fkirc/skip-duplicate-actions to skip or stop workflow runs
contents: read # for fkirc/skip-duplicate-actions to read and compare commits
runs-on: ubuntu-latest
name: Skip the job?
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@9ff9d14760a73102d9fa2f47131624137f50ead8
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- id: skip_check
uses: fkirc/skip-duplicate-actions@84931c63f7562abc89860097e0caf563c7b87f65
with:
skip_after_successful_duplicate: 'true'
do_not_skip: '["workflow_dispatch", "schedule"]'
go-inspect:
permissions:
contents: read # for actions/checkout to fetch code
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
name: Inspect packages
runs-on: ubuntu-22.04
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
steps:
- name: Set up Go
uses: actions/setup-go@bfd2fb341f32be7281829126376a12a780ca79fc
with:
go-version: 1.19.1
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
# see: https://golangci-lint.run/usage/configuration/#config-file
- name: golangci-lint
uses: golangci/golangci-lint-action@abbeba89402362fd9f4b8d12cf4c2884791671e1
with:
version: v1.51.2
skip-go-installation: true
- name: golic
run: |
go install github.com/AbsaOSS/golic@v0.7.2
golic inject --dry -x -t apache2
- name: gokart
run: |
go install github.com/praetorian-inc/gokart@v0.5.1
gokart scan --globalsTainted
- name: go test
run: go test ./...