Skip to content

fix(deps): update module k8s.io/kubernetes to v1.30.1 (#15511) #61853

fix(deps): update module k8s.io/kubernetes to v1.30.1 (#15511)

fix(deps): update module k8s.io/kubernetes to v1.30.1 (#15511) #61853

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
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Harden Runner
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: Checkout Code
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
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@45fc0d88288beee4701c62761281edfee85655d7 # v5.0.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_KUBEVAL: false
VALIDATE_JSCPD: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}