Skip to content

Commit ed9c541

Browse files
Merge branch 'informaticup' into change-display-name
2 parents 2b286da + 715c476 commit ed9c541

File tree

8 files changed

+2730
-2096
lines changed

8 files changed

+2730
-2096
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
vsixPath: ${{ steps.packageExtension.outputs.vsixPath }}
2020
steps:
2121
- name: Harden the runner (Audit all outbound calls)
22-
uses: step-security/harden-runner@002fdce3c6a235733a90a27c80493a3241e56863 # v2.12.1
22+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
2323
with:
2424
egress-policy: audit
2525
#ToDo: Change to block after couple of workflow runs

.github/workflows/dependency_review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Harden the runner (Audit all outbound calls)
15-
uses: step-security/harden-runner@002fdce3c6a235733a90a27c80493a3241e56863 # v2.12.1
15+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
1616
with:
1717
egress-policy: audit
1818
#ToDo: Change to block after couple of workflow runs

.github/workflows/marketplace_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
vsixPath: ${{ steps.packageExtension.outputs.vsixPath }}
2020
steps:
2121
- name: Harden the runner (Audit all outbound calls)
22-
uses: step-security/harden-runner@002fdce3c6a235733a90a27c80493a3241e56863 # v2.12.1
22+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
2323
with:
2424
egress-policy: audit
2525
#ToDo: Change to block after couple of workflow runs

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Harden the runner (Audit all outbound calls)
34-
uses: step-security/harden-runner@002fdce3c6a235733a90a27c80493a3241e56863 # v2.12.1
34+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
3535
with:
3636
egress-policy: audit
3737
#ToDo: Change to block after couple of workflow runs
@@ -75,6 +75,6 @@ jobs:
7575
# Upload the results to GitHub's code scanning dashboard (optional).
7676
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7777
- name: "Upload to code-scanning"
78-
uses: github/codeql-action/upload-sarif@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
78+
uses: github/codeql-action/upload-sarif@4e828ff8d448a8a6e532957b1811f387a63867e8 # v3.29.4
7979
with:
8080
sarif_file: results.sarif

.github/workflows/semgrep.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Harden the runner (Audit all outbound calls)
36-
uses: step-security/harden-runner@002fdce3c6a235733a90a27c80493a3241e56863 # v2.12.1
36+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
3737
with:
3838
egress-policy: audit
3939
#ToDo: Change to block after couple of workflow runs
@@ -46,7 +46,7 @@ jobs:
4646
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
4747

4848
- name: Upload SARIF file for GitHub Advanced Security Dashboard
49-
uses: github/codeql-action/upload-sarif@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
49+
uses: github/codeql-action/upload-sarif@4e828ff8d448a8a6e532957b1811f387a63867e8 # v3.29.4
5050
with:
5151
sarif_file: semgrep.sarif
5252
if: always()

package-lock.json

Lines changed: 2721 additions & 2084 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@
189189
"devDependencies": {
190190
"@vscode/test-cli": "^0.0.11",
191191
"@vscode/test-electron": "^2.4.1",
192-
"jest": "^29.7.0",
192+
"jest": "^30.0.5",
193193
"vscode-extension-tester": "^8.15.0",
194194
"vscode-test": "^1.3.0"
195195
},
196196
"dependencies": {
197-
"@vscode/codicons": "0.0.36",
197+
"@vscode/codicons": "0.0.39",
198198
"ajv": "^8.17.1",
199199
"clingo-wasm": "^0.3.2",
200200
"which": "^5.0.0"

src/runClingoWasmForFileWithProgress.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ async function runClingoWasmForFileWithProgress(vscode, progress, filePath, mode
4343
// Filter options for Clingo
4444
const clingoOptions = options?.filter((arg) => arg.startsWith("--"));
4545

46-
// Remove all sections starting with % and ending with \r\n
47-
fileContent = fileContent.replace(/%.*?\r\n/g, "");
48-
4946
progress.report({
5047
increment: 50,
5148
message: "Running Clingo WASM...",

0 commit comments

Comments
 (0)