うみゅ commited on
Commit
4d64a56
·
unverified ·
1 Parent(s): ea57ff8

Update codeql.yml

Browse files
Files changed (1) hide show
  1. .github/workflows/codeql.yml +8 -1
.github/workflows/codeql.yml CHANGED
@@ -69,7 +69,14 @@ jobs:
69
  steps:
70
  - name: Checkout repository
71
  uses: actions/checkout@v4
72
-
 
 
 
 
 
 
 
73
  # Initializes the CodeQL tools for scanning.
74
  - name: Initialize CodeQL
75
  uses: github/codeql-action/init@v3
 
69
  steps:
70
  - name: Checkout repository
71
  uses: actions/checkout@v4
72
+ - name: Setup Python
73
+ uses: actions/setup-python@v4
74
+ with:
75
+ python-version: '3.11'
76
+ - name: Install dependencies
77
+ run: |
78
+ python -m pip install --upgrade pip
79
+ pip install -r requirements.txt
80
  # Initializes the CodeQL tools for scanning.
81
  - name: Initialize CodeQL
82
  uses: github/codeql-action/init@v3