File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ jobs:
16
16
17
17
steps :
18
18
- name : Checkout repository
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
21
21
# Initializes the CodeQL tools for scanning.
22
22
- name : Initialize CodeQL
23
- uses : github/codeql-action/init@v1
23
+ uses : github/codeql-action/init@v3
24
24
with :
25
25
languages : python
26
26
27
27
- name : Perform CodeQL Analysis
28
- uses : github/codeql-action/analyze@v1
28
+ uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change 6
6
build :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v3
9
+ - uses : actions/checkout@v4
10
10
- name : Set up Python
11
- uses : actions/setup-python@v4
11
+ uses : actions/setup-python@v5
12
12
with :
13
13
python-version : 3.x
14
14
- name : Install dependencies
Original file line number Diff line number Diff line change 7
7
name : Build Python source distribution
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v3
10
+ - uses : actions/checkout@v4
11
11
12
12
- name : Build sdist
13
13
run : pipx run build --sdist
14
14
15
- - uses : actions/upload-artifact@v3
15
+ - uses : actions/upload-artifact@v4
16
16
with :
17
17
path : dist/*.tar.gz
18
18
28
28
permissions :
29
29
id-token : write
30
30
steps :
31
- - uses : actions/download-artifact@v3
31
+ - uses : actions/download-artifact@v4
32
32
with :
33
33
# unpacks default artifact into dist/
34
34
# if `name: artifact` is omitted, the action will create extra parent dir
You can’t perform that action at this time.
0 commit comments