fix(deps): update dependency @roadiehq/backstage-plugin-argo-cd to ^2.8.1 #70468
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
########################### | |
########################### | |
## 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@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
- name: Checkout Code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
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 }} |