Skip to content

Commit 790f2cf

Browse files
authored
Merge pull request #20 from PyMoDAQ/gh-actions-update-1738719773
Update GitHub Action Versions
2 parents f25a514 + 379120b commit 790f2cf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4.2.2
1717
- name: Set up Python
18-
uses: actions/setup-python@v5.3.0
18+
uses: actions/setup-python@v5.4.0
1919
with:
2020
python-version: '3.11'
2121
- name: Install dependencies

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/checkout@v4.2.2
4040

4141
- name: Set up Python ${{ matrix.python-version }}
42-
uses: actions/setup-python@v5.3.0
42+
uses: actions/setup-python@v5.4.0
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
- name: Install dependencies
@@ -66,7 +66,7 @@ jobs:
6666
pytest --cov=pymodaq_utils --ignore-glob='*legacy*' -n 1
6767
mv .coverage coverage/coverage_${{ matrix.os }}_${{ matrix.python-version }}
6868
- name: Upload coverage artifact
69-
uses: actions/upload-artifact@v4.5.0
69+
uses: actions/upload-artifact@v4.6.0
7070
with:
7171
name: coverage-${{ matrix.os }}-${{ matrix.python-version }}
7272
path: coverage/coverage_${{ matrix.os }}_${{ matrix.python-version }}
@@ -98,7 +98,7 @@ jobs:
9898

9999
- name: Upload badge artifact
100100
if: ${{ always() }}
101-
uses: actions/upload-artifact@v4.5.0
101+
uses: actions/upload-artifact@v4.6.0
102102
with:
103103
name: tests_${{runner.os}}_${{matrix.python-version}}
104104
path: '${{ steps.extract_branch.outputs.branch }}/tests_${{runner.os}}_${{matrix.python-version}}.svg'
@@ -171,7 +171,7 @@ jobs:
171171
coverage xml -i
172172
173173
- name: Upload combined coverage report to Codecov
174-
uses: codecov/codecov-action@v5.1.2
174+
uses: codecov/codecov-action@v5.3.1
175175
with:
176176
token: ${{ secrets.CODECOV_TOKEN }}
177177
files: coverage.xml

0 commit comments

Comments
 (0)