Skip to content

Commit 21dc1c8

Browse files
author
Peng Ren
committed
Upgrade CI dependencies
1 parent 1d6800e commit 21dc1c8

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
- uses: actions/checkout@v5
3636

3737
- name: Set up Python ${{ matrix.python-version }}
38-
uses: actions/setup-python@v5
38+
uses: actions/setup-python@v6
3939
with:
4040
python-version: ${{ matrix.python-version }}
4141

4242
- name: Cache pip dependencies
43-
uses: actions/cache@v4
43+
uses: actions/cache@v5
4444
with:
4545
path: ~/.cache/pip
4646
key: ${{ runner.os }}-py${{ matrix.python-version }}-mongo${{ matrix.mongodb-version }}-sqlalchemy-${{ matrix.sqlalchemy-version }}-pip-${{ hashFiles('**/requirements-test.txt', 'pyproject.toml') }}

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
- uses: actions/checkout@v5
1818

1919
- name: Set up Python ${{ env.PYTHON_VERSION }}
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: ${{ env.PYTHON_VERSION }}
2323

2424
- name: Cache pip dependencies
25-
uses: actions/cache@v4
25+
uses: actions/cache@v5
2626
with:
2727
path: ~/.cache/pip
2828
key: ${{ runner.os }}-pip-lint-${{ hashFiles('**/requirements-test.txt', 'pyproject.toml') }}
@@ -63,7 +63,7 @@ jobs:
6363
fetch-depth: 0
6464

6565
- name: Set up Python ${{ env.PYTHON_VERSION }}
66-
uses: actions/setup-python@v5
66+
uses: actions/setup-python@v6
6767
with:
6868
python-version: ${{ env.PYTHON_VERSION }}
6969

@@ -85,7 +85,7 @@ jobs:
8585
ls -la dist/
8686
8787
- name: Upload build artifacts
88-
uses: actions/upload-artifact@v4
88+
uses: actions/upload-artifact@v6
8989
with:
9090
name: dist
9191
path: dist/
@@ -100,7 +100,7 @@ jobs:
100100

101101
steps:
102102
- name: Download build artifacts
103-
uses: actions/download-artifact@v4
103+
uses: actions/download-artifact@v7
104104
with:
105105
name: dist
106106
path: dist/
@@ -118,12 +118,12 @@ jobs:
118118
contents: write
119119

120120
steps:
121-
- uses: actions/checkout@v4
121+
- uses: actions/checkout@v5
122122
with:
123123
fetch-depth: 0
124124

125125
- name: Download build artifacts
126-
uses: actions/download-artifact@v4
126+
uses: actions/download-artifact@v7
127127
with:
128128
name: dist
129129
path: dist/

0 commit comments

Comments
 (0)