You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* main:
Hotfix for check on frequency provider
Tests run_until must be guard-claused with cleanup routine (#616)
Fix check if stderr is empty (#613)
Bump uvicorn[standard] from 0.24.0.post1 to 0.25.0 (#612)
Fxing the network provider stderror
Branch and filename are now always not null (#602)
Adds a more elaborate depends_on test
Support reading notes from services (#590)
docker build command in tests now checks reason for docker build failure. If it is a permission issue with the cache, it will continue the rest of the workflow (#576)
Use depends_on for container startup order (refactored) (#593)
Bump psycopg[binary] from 3.1.15 to 3.1.16 (#610)
Added powercap info to hardware_info (#609)
Changed wording for network infrastructure box (#608)
Added SIGQUIT to nginx and initi to gunicorn, as we are using bash script in entrypoint (#605)
Fix frontend flow menu to wrap automatically (#584)
Bump psutil from 5.9.6 to 5.9.7 (#603)
Disable Docker CLI hints (#555)
Create codeql.yml
# Use only 'java-kotlin' to analyze code written in Java, Kotlin or both
41
+
# Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
42
+
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
43
+
44
+
steps:
45
+
- name: Checkout repository
46
+
uses: actions/checkout@v4
47
+
48
+
# Initializes the CodeQL tools for scanning.
49
+
- name: Initialize CodeQL
50
+
uses: github/codeql-action/init@v3
51
+
with:
52
+
languages: ${{ matrix.language }}
53
+
# If you wish to specify custom queries, you can do so here or in a config file.
54
+
# By default, queries listed here will override any specified in a config file.
55
+
# Prefix the list here with "+" to use these queries and those in the config file.
56
+
57
+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
58
+
queries: security-extended
59
+
60
+
61
+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
62
+
# If this step fails, then you should remove it and run the build manually (see below)
63
+
- name: Autobuild
64
+
uses: github/codeql-action/autobuild@v3
65
+
66
+
# ℹ️ Command-line programs to run using the OS shell.
67
+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
68
+
69
+
# If the Autobuild fails above, remove it and uncomment the following three lines.
70
+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
0 commit comments