Skip to content

Commit bcaf574

Browse files
committed
Update GitHub Actions workflows to use latest action versions
- Upgraded actions/checkout to version 4 and actions/setup-python to version 5 across multiple workflow files for improved functionality. - Updated actions/upload-artifact to version 4 in relevant workflows to enhance artifact management.
1 parent 4c0075e commit bcaf574

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
python-version: ["3.10", "3.11"]
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v3
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: Set up Python
26-
uses: actions/setup-python@v3
26+
uses: actions/setup-python@v5
2727
with:
2828
python-version: '3.x'
2929
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ jobs:
422422

423423
- name: Upload test artifacts
424424
if: always()
425-
uses: actions/upload-artifact@v3
425+
uses: actions/upload-artifact@v4
426426
with:
427427
name: praisonai-output-${{ matrix.os }}-${{ matrix.framework }}
428428
path: test_output/

.github/workflows/test-comprehensive.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
echo "- 🌐 Multi-modal capabilities" >> comprehensive_report.md
120120
121121
- name: Upload Comprehensive Test Results
122-
uses: actions/upload-artifact@v3
122+
uses: actions/upload-artifact@v4
123123
if: always()
124124
with:
125125
name: comprehensive-test-results-python-${{ matrix.python-version }}
@@ -153,7 +153,7 @@ jobs:
153153
fi
154154
155155
- name: Upload Matrix Summary
156-
uses: actions/upload-artifact@v3
156+
uses: actions/upload-artifact@v4
157157
with:
158158
name: test-matrix-summary
159159
path: matrix_summary.md

.github/workflows/test-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
python -m pytest tests/test.py -v --tb=short --disable-warnings
5454
5555
- name: Upload Coverage Reports
56-
uses: actions/upload-artifact@v3
56+
uses: actions/upload-artifact@v4
5757
if: matrix.python-version == '3.11'
5858
with:
5959
name: coverage-reports

.github/workflows/test-extended.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
echo "_Performance results are logged in the CI output above._" >> performance_report.md
143143
144144
- name: Upload Performance Report
145-
uses: actions/upload-artifact@v3
145+
uses: actions/upload-artifact@v4
146146
with:
147147
name: performance-report
148148
path: performance_report.md

0 commit comments

Comments
 (0)