@@ -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') }}
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 }}
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
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
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