Skip to content

chore(deps): update dependency k8gb-io/k8gb to v0.14.0 #12818

chore(deps): update dependency k8gb-io/k8gb to v0.14.0

chore(deps): update dependency k8gb-io/k8gb to v0.14.0 #12818

Workflow file for this run

name: Golang lint, golic 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@951b48540b429070694bc8abd82fd6901eb123ca
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.22.3
- uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc
# see: https://golangci-lint.run/usage/configuration/#config-file
- name: golangci-lint
uses: golangci/golangci-lint-action@68de804037d6beb4bec814041c98865cb188f3db
with:
version: v1.59.1
skip-go-installation: true
args: --timeout=3m
- name: golic
run: |
go install github.com/AbsaOSS/[email protected]
golic inject --dry -x -t apache2
- name: go test
run: go test ./...