Skip to content

build(deps): bump github.com/opencontainers/runc from 1.2.5 to 1.2.8 in /boundaries/link in the go_modules group across 1 directory #85308

build(deps): bump github.com/opencontainers/runc from 1.2.5 to 1.2.8 in /boundaries/link in the go_modules group across 1 directory

build(deps): bump github.com/opencontainers/runc from 1.2.5 to 1.2.8 in /boundaries/link in the go_modules group across 1 directory #85308

Workflow file for this run

---
###########################
###########################
## Linter GitHub Actions ##
###########################
###########################
name: Lint Code Base
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#############################
# Start the job on all push #
#############################
on:
push:
branches-ignore:
- main
# Remove the line above to run when pushing to master
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
###############
# Set the Job #
###############
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
# Name the Job
permissions:
contents: read # for actions/checkout to fetch code
statuses: write # for github/super-linter to mark status of each linter run
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest
timeout-minutes: 20
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Harden Runner
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: Checkout Code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter@b92721f792f381cedc002ecdbb9847a15ece5bb8 # v6.10.0
env:
FILTER_REGEX_EXCLUDE: .*(README\.md|Chart\.yaml|NOTES.txt).*
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
VALIDATE_ANSIBLE: false
ANSIBLE_DIRECTORY: ops/ansible
VALIDATE_KUBERNETES_KUBECONFORM: false
VALIDATE_JSCPD: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}