Skip to content

Commit 608682a

Browse files
authored
bump the major versions of some GH actions (#69)
The idea is to satisfy the deprecation of actions that still use node.js v16. Actions that are bumped here use node.js v20
1 parent 5ad8d43 commit 608682a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
# Draft your next Release notes as Pull Requests are merged into the default branch
14-
- uses: release-drafter/release-drafter@v5
14+
- uses: release-drafter/release-drafter@v6
1515
env:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/run-dev-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Build wheel
3131
run: python3 -m pip wheel --no-deps -w dist .
3232
- name: Upload wheel as artifact
33-
uses: actions/upload-artifact@v3
33+
uses: actions/upload-artifact@v4
3434
with:
3535
name: cpp-linter_wheel
3636
path: ${{ github.workspace }}/dist/*.whl
@@ -53,7 +53,7 @@ jobs:
5353
python-version: ${{ matrix.py }}
5454

5555
- name: download wheel artifact
56-
uses: actions/download-artifact@v3
56+
uses: actions/download-artifact@v4
5757
with:
5858
name: cpp-linter_wheel
5959
path: dist
@@ -97,7 +97,7 @@ jobs:
9797
run: coverage run -m pytest
9898

9999
- name: Upload coverage data
100-
uses: actions/upload-artifact@v3
100+
uses: actions/upload-artifact@v4
101101
with:
102102
name: coverage-data-${{ runner.os }}-py${{ matrix.py }}-${{ matrix.version }}
103103
path: .coverage*
@@ -109,7 +109,7 @@ jobs:
109109
- uses: actions/checkout@v4
110110

111111
- name: Download all artifacts
112-
uses: actions/download-artifact@v3
112+
uses: actions/download-artifact@v4
113113
with:
114114
path: ci-artifacts
115115

@@ -127,7 +127,7 @@ jobs:
127127
coverage html
128128
129129
- name: Upload comprehensive coverage HTML report
130-
uses: actions/upload-artifact@v3
130+
uses: actions/upload-artifact@v4
131131
with:
132132
name: coverage-report
133133
path: htmlcov/

0 commit comments

Comments
 (0)