Skip to content

Commit 8650b28

Browse files
author
Peng Ren
committed
Update CI dependencies version
1 parent 9346491 commit 8650b28

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
--health-retries 5
3333
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636

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

4242
- name: Cache pip dependencies
43-
uses: actions/cache@v3
43+
uses: actions/cache@v4
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') }}
@@ -101,7 +101,7 @@ jobs:
101101
python -m pytest tests/ --cov=pymongosql --cov-report=term-missing --cov-report=xml
102102
103103
- name: Upload coverage reports
104-
uses: codecov/codecov-action@v4
104+
uses: codecov/codecov-action@v5
105105
with:
106106
env_vars: OS,PYTHON
107107
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

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

2424
- name: Cache pip dependencies
25-
uses: actions/cache@v3
25+
uses: actions/cache@v4
2626
with:
2727
path: ~/.cache/pip
2828
key: ${{ runner.os }}-pip-lint-${{ hashFiles('**/requirements-test.txt', 'pyproject.toml') }}
@@ -57,13 +57,13 @@ jobs:
5757
needs: [lint-and-format, test]
5858

5959
steps:
60-
- uses: actions/checkout@v4
60+
- uses: actions/checkout@v5
6161
with:
6262
# Fetch full history for setuptools_scm
6363
fetch-depth: 0
6464

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

0 commit comments

Comments
 (0)