File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed
actions/setup-codeql-environment
skills/add-mcp-support-for-new-language Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments