File tree Expand file tree Collapse file tree 3 files changed +18
-15
lines changed Expand file tree Collapse file tree 3 files changed +18
-15
lines changed Original file line number Diff line number Diff line change 3636
3737 # Initializes the CodeQL tools for scanning.
3838 - name : Initialize CodeQL
39- uses : github/codeql-action/init@v2
39+ uses : github/codeql-action/init@v3
4040 with :
4141 languages : python
4242 # languages: python, cpp
4545 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4646 # If this step fails, then you should remove it and run the build manually (see below).
4747 - name : Autobuild
48- uses : github/codeql-action/autobuild@v2
48+ uses : github/codeql-action/autobuild@v3
4949
5050 # ℹ️ Command-line programs to run using the OS shell.
5151 # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
5959 # make release
6060
6161 - name : Perform CodeQL Analysis
62- uses : github/codeql-action/analyze@v2
62+ uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change 2828
29293030
31- - uses : actions/upload-artifact@v3
31+ - uses : actions/upload-artifact@v4
3232 with :
33- name : wheels
33+ name : wheels-${{ matrix.os }}
3434 path : ./wheelhouse
3535
3636 build_sdist :
@@ -52,22 +52,24 @@ jobs:
5252 - name : test install
5353 run : pip install dist/numcodecs*.tar.gz
5454
55- - uses : actions/upload-artifact@v3
55+ - uses : actions/upload-artifact@v4
5656 with :
57+ name : sdist
5758 path : dist/*.tar.gz
5859
5960 test_dist_pypi :
6061 needs : [build_wheels, build_sdist]
6162 runs-on : ubuntu-latest
6263 steps :
63- - uses : actions/download-artifact@v3
64+ - uses : actions/download-artifact@v4
6465 with :
65- name : artifact
66+ name : sdist
6667 path : dist
67- - uses : actions/download-artifact@v3
68+ - uses : actions/download-artifact@v4
6869 with :
69- name : wheels
70+ pattern : wheels-*
7071 path : dist
72+ merge-multiple : true
7173
7274 - name : test
7375 run : |
@@ -79,14 +81,15 @@ jobs:
7981 runs-on : ubuntu-latest
8082 if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
8183 steps :
82- - uses : actions/download-artifact@v3
84+ - uses : actions/download-artifact@v4
8385 with :
84- name : artifact
86+ name : sdist
8587 path : dist
86- - uses : actions/download-artifact@v3
88+ - uses : actions/download-artifact@v4
8789 with :
88- name : wheels
90+ pattern : wheels-*
8991 path : dist
92+ merge-multiple : true
9093
9194 - uses : pypa/gh-action-pypi-publish@master
9295 with :
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ default_language_version:
77 python : python3
88repos :
99 - repo : https://github.com/astral-sh/ruff-pre-commit
10- rev : ' v0.4.9 '
10+ rev : ' v0.4.10 '
1111 hooks :
1212 - id : ruff
1313 args : ["--fix", "--show-fixes"]
You can’t perform that action at this time.
0 commit comments