Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/actions/setup-codeql-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ runs:
- name: Cache `gh-codeql` extension and CodeQL packages (Unix)
id: cache-codeql-unix
if: runner.os != 'Windows'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.local/share/gh-codeql
Expand All @@ -94,7 +94,7 @@ runs:
- name: Cache `gh-codeql` extension and CodeQL packages (Windows)
id: cache-codeql-windows
if: runner.os == 'Windows'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~\AppData\Local\GitHub\gh-codeql
Expand Down Expand Up @@ -330,7 +330,7 @@ runs:
- name: Cache language runtimes
id: cache-runtimes
if: inputs.install-language-runtimes == 'true'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/go/pkg/mod
Expand Down Expand Up @@ -388,7 +388,7 @@ runs:
- name: Cache .NET packages
if: inputs.install-language-runtimes == 'true' && contains(inputs.languages, 'csharp')
id: cache-dotnet-packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.nuget/packages
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up CodeQL CLI
uses: github/codeql-action/init@v3
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/update-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,14 @@ jobs:
- name: Update - Upgrade CodeQL pack dependencies
run: server/scripts/upgrade-packs.sh

- name: Update - Install xvfb and VS Code dependencies
run: |
sudo apt-get update
sudo apt-get install -y xvfb libgbm1 libgtk-3-0 libxshmfence1
sudo apt-get install -y libasound2t64 || sudo apt-get install -y libasound2

- name: Update - Build and test
run: npm run build-and-test
run: xvfb-run -a npm run build-and-test

- name: Update - Create Pull Request
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0
Expand Down
Loading