Skip to content

Commit 993784d

Browse files
committed
Update Github action versions
1 parent a5d9614 commit 993784d

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v7
2020

2121
- name: Enforce changelog update
2222
uses: dangoslen/changelog-enforcer@v3

.github/workflows/tests.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v7
2525

2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v5
27+
uses: actions/setup-python@v7
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030

31-
- uses: actions/cache@v4
31+
- uses: actions/cache@v6
3232
with:
3333
path: ~/.cache/pip
3434
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('.github/dependabot/constraints.txt') }}
@@ -45,7 +45,7 @@ jobs:
4545
CALCAT_OAUTH_CREDS: ${{ secrets.CALCAT_OAUTH_CREDS }}
4646

4747
- name: Upload coverage reports to Codecov
48-
uses: codecov/codecov-action@v4
48+
uses: codecov/codecov-action@v7
4949
with:
5050
fail_ci_if_error: true
5151
token: ${{ secrets.CODECOV_TOKEN }}
@@ -57,7 +57,7 @@ jobs:
5757

5858
steps:
5959
- name: Checkout
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v7
6161

6262
- name: Build wheels
6363
uses: pypa/cibuildwheel@v4.1.1
@@ -66,7 +66,7 @@ jobs:
6666
CIBW_SKIP: "*-musllinux_* pp*"
6767

6868
- name: Upload artifacts
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v7
7070
with:
7171
name: wheels
7272
path: ./wheelhouse/*.whl
@@ -78,13 +78,13 @@ jobs:
7878

7979
steps:
8080
- name: Checkout
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v7
8282

8383
- name: Build sdist
8484
run: pipx run build --sdist
8585

8686
- name: Upload artifacts
87-
uses: actions/upload-artifact@v4
87+
uses: actions/upload-artifact@v7
8888
with:
8989
name: sdist
9090
path: dist/*.tar.gz
@@ -99,7 +99,7 @@ jobs:
9999

100100
steps:
101101
- name: Download artifacts
102-
uses: actions/download-artifact@v4
102+
uses: actions/download-artifact@v8
103103
with:
104104
path: dist
105105
merge-multiple: true

0 commit comments

Comments
 (0)