Skip to content

Commit

Permalink
ci/codeql: Fix inconsistent indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
issyl0 committed Jan 19, 2024
1 parent 906a3dc commit ad7666d
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
name: "CodeQL"

on:
push:
branches:
- master
pull_request:
branches:
- master
push:
branches:
- master
pull_request:
branches:
- master

jobs:
analyze:
name: Analyze
runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
security-events: write
analyze:

Check failure on line 12 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

"steps" section is missing in job "analyze"
name: Analyze
runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
security-events: write

steps:
- name: Checkout repository
uses: actions/checkout@v4
steps:

Check failure on line 20 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

"steps" section is missing in job "steps"

Check failure on line 20 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

"runs-on" section is missing in job "steps"
- name: Checkout repository

Check failure on line 21 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

"steps" job is sequence node but mapping node is expected
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ruby
config: |
paths-ignore:
- Library/Homebrew/vendor
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ruby
config: |
paths-ignore:
- Library/Homebrew/vendor
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3

0 comments on commit ad7666d

Please sign in to comment.