From ccdcdf4c78d96316a26785bdf3e1f3eae0e92f4b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 17:50:58 +0000 Subject: [PATCH] =?UTF-8?q?XS=E2=9C=94=20=E2=97=BE=20Bump=20github/codeql-?= =?UTF-8?q?action=20from=202.22.5=20to=202.22.8=20(#444)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.22.5 to 2.22.8.
Changelog

Sourced from github/codeql-action's changelog.

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

[UNRELEASED]

No user facing changes.

2.22.8 - 23 Nov 2023

2.22.7 - 16 Nov 2023

2.22.6 - 14 Nov 2023

2.22.5 - 27 Oct 2023

No user facing changes.

2.22.4 - 20 Oct 2023

2.22.3 - 13 Oct 2023

2.22.2 - 12 Oct 2023

2.22.1 - 09 Oct 2023

2.22.0 - 06 Oct 2023

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github/codeql-action&package-manager=github_actions&previous-version=2.22.5&new-version=2.22.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
--------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Muiris Woulfe --- .github/workflows/build.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7bce58dc..91cbe552 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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