Skip to content

Commit 635300d

Browse files
committed
upgrade github action verions
1 parent 8d5d998 commit 635300d

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ jobs:
226226
python-version: "3.12"
227227
cache: 'pip'
228228
- name: Download sdist artifact
229-
uses: actions/download-artifact@v7
229+
uses: actions/download-artifact@v8
230230
with:
231231
name: sdist
232232
path: bld/sdist
@@ -251,7 +251,7 @@ jobs:
251251
echo "Building of docs failed." >> $GITHUB_STEP_SUMMARY
252252
- name: Mark step with a warning
253253
if: ${{ steps.build_docs.outcome == 'failure' }}
254-
uses: actions/github-script@v8
254+
uses: actions/github-script@v9
255255
with:
256256
script: |
257257
await github.rest.checks.create({
@@ -289,13 +289,13 @@ jobs:
289289
python-version: "3.10"
290290
cache: 'pip'
291291
- name: Download libebm artifacts
292-
uses: actions/download-artifact@v7
292+
uses: actions/download-artifact@v8
293293
with:
294294
pattern: libebm_*
295295
merge-multiple: true
296296
path: python/interpret-core/interpret/root/bld/lib/
297297
- name: Download vis artifact
298-
uses: actions/download-artifact@v7
298+
uses: actions/download-artifact@v8
299299
with:
300300
name: vis
301301
path: python/interpret-core/interpret/root/bld/lib/
@@ -366,7 +366,7 @@ jobs:
366366
python-version: ${{ matrix.python_ver }}
367367
cache: 'pip'
368368
- name: Download powerlift artifact
369-
uses: actions/download-artifact@v7
369+
uses: actions/download-artifact@v8
370370
with:
371371
name: powerlift
372372
path: bld/powerlift
@@ -461,7 +461,7 @@ jobs:
461461
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.commit_id || github.sha }}
462462
- name: Download libebm artifact
463463
if: ${{ matrix.existing != '' }}
464-
uses: actions/download-artifact@v7
464+
uses: actions/download-artifact@v8
465465
with:
466466
name: libebm_${{ matrix.name }}
467467
path: bld/lib
@@ -555,7 +555,7 @@ jobs:
555555
python-version: ${{ matrix.python_ver }}
556556
cache: 'pip'
557557
- name: Download sdist artifact
558-
uses: actions/download-artifact@v7
558+
uses: actions/download-artifact@v8
559559
with:
560560
name: sdist
561561
path: bld/sdist
@@ -585,7 +585,7 @@ jobs:
585585
python -m pytest -vv -n auto --cov=interpret --cov-report=xml
586586
- name: Code coverage report
587587
if: always()
588-
uses: codecov/codecov-action@v5
588+
uses: codecov/codecov-action@v6
589589
with:
590590
files: tmp/zqmr/t/coverage.xml
591591
flags: sdist_${{ matrix.name }}
@@ -659,7 +659,7 @@ jobs:
659659
python-version: ${{ matrix.python_ver }}
660660
cache: 'pip'
661661
- name: Download bdist artifact
662-
uses: actions/download-artifact@v7
662+
uses: actions/download-artifact@v8
663663
with:
664664
name: bdist
665665
path: bld/bdist
@@ -689,7 +689,7 @@ jobs:
689689
python -m pytest -vv -n auto --cov=interpret --cov-report=xml
690690
- name: Code coverage report
691691
if: always()
692-
uses: codecov/codecov-action@v5
692+
uses: codecov/codecov-action@v6
693693
with:
694694
files: tmp/zqmr/t/coverage.xml
695695
flags: bdist_${{ matrix.name }}
@@ -712,7 +712,7 @@ jobs:
712712
with:
713713
r-version: 'latest'
714714
- name: Download R artifact
715-
uses: actions/download-artifact@v7
715+
uses: actions/download-artifact@v8
716716
with:
717717
name: R
718718
path: bld/R
@@ -759,7 +759,7 @@ jobs:
759759
echo "Run clang formatting locally and push the changes." >> $GITHUB_STEP_SUMMARY
760760
- name: Mark step with a warning
761761
if: ${{ steps.check_cpp.outcome == 'failure' }}
762-
uses: actions/github-script@v8
762+
uses: actions/github-script@v9
763763
with:
764764
script: |
765765
await github.rest.checks.create({
@@ -803,7 +803,7 @@ jobs:
803803
echo "Run \`ruff format .\` locally and push the changes." >> $GITHUB_STEP_SUMMARY
804804
- name: Mark step with a warning
805805
if: ${{ steps.check_python.outcome == 'failure' }}
806-
uses: actions/github-script@v8
806+
uses: actions/github-script@v9
807807
with:
808808
script: |
809809
await github.rest.checks.create({

0 commit comments

Comments
 (0)