Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XS✔ ◾ Bump github/codeql-action from 2.22.5 to 2.22.8 #444

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 14 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -187,11 +187,23 @@ jobs:
print-valid-files: true
strict: false

- name: Validate .markdownlint.json – Download .markdownlint.schema.json
shell: pwsh
run: Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json' -OutFile '.markdownlint.schema.json'

- name: Validate .markdownlint.json – Update .markdownlint.schema.json
shell: pwsh
run: |-
$FileContent = Get-Content -Path '.markdownlint.schema.json' -Raw
$FileContent = $FileContent -replace 'http://json-schema.org/draft-07/schema#', 'http://json-schema.org/draft-04/schema#'
Set-Content -NoNewline -Path '.markdownlint.schema.json' -Value $FileContent

- name: Validate .markdownlint.json
uses: walbo/validate-json@1c24a27a740a698944ff5b697cb8010a72c55c6b # v1.1.0
with:
files: .markdownlint.json
print-valid-files: true
schema: .markdownlint.schema.json

- name: Validate package.json – Download package.schema.json
shell: pwsh
Expand Down Expand Up @@ -318,13 +330,13 @@ jobs:
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Initialize
uses: github/codeql-action/init@74483a38d39275f33fcff5f35b679b5ca4a26a99 # v2.22.5
uses: github/codeql-action/init@407ffafae6a767df3e0230c3df91b6443ae8df75 # v2.22.8
with:
config-file: .github/linters/codeql.yml
queries: security-and-quality

- name: Analyze
uses: github/codeql-action/analyze@74483a38d39275f33fcff5f35b679b5ca4a26a99 # v2.22.5
uses: github/codeql-action/analyze@407ffafae6a767df3e0230c3df91b6443ae8df75 # v2.22.8

validate-linter:
name: Validate – Linter
Expand Down