File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 42
42
43
43
# Initializes the CodeQL tools for scanning.
44
44
- name : Initialize CodeQL
45
- uses : github/codeql-action/init@v2
45
+ uses : github/codeql-action/init@v3
46
46
with :
47
47
languages : ${{ matrix.language }}
48
48
# If you wish to specify custom queries, you can do so here or in a config file.
56
56
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
57
57
# If this step fails, then you should remove it and run the build manually (see below)
58
58
- name : Autobuild
59
- uses : github/codeql-action/autobuild@v2
59
+ uses : github/codeql-action/autobuild@v3
60
60
61
61
# ℹ️ Command-line programs to run using the OS shell.
62
62
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
69
69
# ./location_of_script_within_repo/buildscript.sh
70
70
71
71
- name : Perform CodeQL Analysis
72
- uses : github/codeql-action/analyze@v2
72
+ uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change 16
16
submodules : true
17
17
fetch-depth : 0
18
18
19
- - uses : actions/setup-python@v4.7.1
19
+ - uses : actions/setup-python@v5
20
20
name : Install Python
21
21
with :
22
22
python-version : ' 3.11'
27
27
pip install hatch
28
28
- name : Build wheel and sdist
29
29
run : hatch build
30
- - uses : actions/upload-artifact@v3
30
+ - uses : actions/upload-artifact@v4
31
31
with :
32
32
name : releases
33
33
path : dist
36
36
needs : [build_artifacts]
37
37
runs-on : ubuntu-latest
38
38
steps :
39
- - uses : actions/download-artifact@v3
39
+ - uses : actions/download-artifact@v4
40
40
with :
41
41
name : releases
42
42
path : dist
@@ -51,11 +51,11 @@ jobs:
51
51
runs-on : ubuntu-latest
52
52
if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
53
53
steps :
54
- - uses : actions/download-artifact@v3
54
+ - uses : actions/download-artifact@v4
55
55
with :
56
56
name : releases
57
57
path : dist
58
-
58
+
59
59
with :
60
60
user : __token__
61
61
password : ${{ secrets.pypi_password }}
Original file line number Diff line number Diff line change 26
26
dependency-set : ["minimal", "optional"]
27
27
28
28
steps :
29
- - uses : actions/checkout@v3
29
+ - uses : actions/checkout@v4
30
30
- name : Set up Python
31
- uses : actions/setup-python@v4
31
+ uses : actions/setup-python@v5
32
32
with :
33
33
python-version : ${{ matrix.python-version }}
34
34
cache : ' pip'
You can’t perform that action at this time.
0 commit comments