Skip to content

Commit dc90a69

Browse files
authored
Merge branch 'main' into dd/improve-error-handling-relative-path-support
2 parents 197e9f8 + 3487416 commit dc90a69

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.github/actions/setup-codeql-environment/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ runs:
8282
- name: Cache `gh-codeql` extension and CodeQL packages (Unix)
8383
id: cache-codeql-unix
8484
if: runner.os != 'Windows'
85-
uses: actions/cache@v4
85+
uses: actions/cache@v5
8686
with:
8787
path: |
8888
~/.local/share/gh-codeql
@@ -94,7 +94,7 @@ runs:
9494
- name: Cache `gh-codeql` extension and CodeQL packages (Windows)
9595
id: cache-codeql-windows
9696
if: runner.os == 'Windows'
97-
uses: actions/cache@v4
97+
uses: actions/cache@v5
9898
with:
9999
path: |
100100
~\AppData\Local\GitHub\gh-codeql
@@ -330,7 +330,7 @@ runs:
330330
- name: Cache language runtimes
331331
id: cache-runtimes
332332
if: inputs.install-language-runtimes == 'true'
333-
uses: actions/cache@v4
333+
uses: actions/cache@v5
334334
with:
335335
path: |
336336
~/go/pkg/mod
@@ -388,7 +388,7 @@ runs:
388388
- name: Cache .NET packages
389389
if: inputs.install-language-runtimes == 'true' && contains(inputs.languages, 'csharp')
390390
id: cache-dotnet-packages
391-
uses: actions/cache@v4
391+
uses: actions/cache@v5
392392
with:
393393
path: |
394394
~/.nuget/packages

.github/skills/add-mcp-support-for-new-language/workflow-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
steps:
4646
- name: Checkout repository
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v6
4848

4949
- name: Set up CodeQL CLI
5050
uses: github/codeql-action/init@v3

.github/workflows/update-codeql.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,14 @@ jobs:
134134
- name: Update - Upgrade CodeQL pack dependencies
135135
run: server/scripts/upgrade-packs.sh
136136

137+
- name: Update - Install xvfb and VS Code dependencies
138+
run: |
139+
sudo apt-get update
140+
sudo apt-get install -y xvfb libgbm1 libgtk-3-0 libxshmfence1
141+
sudo apt-get install -y libasound2t64 || sudo apt-get install -y libasound2
142+
137143
- name: Update - Build and test
138-
run: npm run build-and-test
144+
run: xvfb-run -a npm run build-and-test
139145

140146
- name: Update - Create Pull Request
141147
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0

0 commit comments

Comments
 (0)