Skip to content

Commit 3305136

Browse files
authored
Merge pull request #2836 from bagerard/bump_gh_actions_versions
bump checkout and python github actions (fix nodejs deprecation warnings)
2 parents ccae19c + 14255ec commit 3305136

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/github-actions.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242
# which runs pre-configured linter & autoformatter
4343
runs-on: ubuntu-latest
4444
steps:
45-
- uses: actions/checkout@v3
46-
- uses: actions/setup-python@v4
45+
- uses: actions/checkout@v4
46+
- uses: actions/setup-python@v5
4747
with:
4848
python-version: '3.9'
4949
check-latest: true
@@ -89,9 +89,9 @@ jobs:
8989
MONGODB: $MONGODB_7_0
9090
PYMONGO: $PYMONGO_4_8
9191
steps:
92-
- uses: actions/checkout@v3
92+
- uses: actions/checkout@v4
9393
- name: Set up Python ${{ matrix.python-version }}
94-
uses: actions/setup-python@v4
94+
uses: actions/setup-python@v5
9595
with:
9696
python-version: ${{ matrix.python-version }}
9797
check-latest: true
@@ -119,9 +119,9 @@ jobs:
119119
# builds are visible at https://readthedocs.org/projects/mongoengine-odm/builds/
120120
runs-on: ubuntu-latest
121121
steps:
122-
- uses: actions/checkout@v3
122+
- uses: actions/checkout@v4
123123
- name: Set up Python ${{ matrix.python-version }}
124-
uses: actions/setup-python@v4
124+
uses: actions/setup-python@v5
125125
with:
126126
python-version: 3.9
127127
check-latest: true
@@ -138,8 +138,8 @@ jobs:
138138
runs-on: ubuntu-latest
139139
needs: [linting, test, build_doc_dryrun]
140140
steps:
141-
- uses: actions/checkout@v3
142-
- uses: actions/setup-python@v4
141+
- uses: actions/checkout@v4
142+
- uses: actions/setup-python@v5
143143
with:
144144
python-version: 3.9
145145
check-latest: true
@@ -153,9 +153,9 @@ jobs:
153153
needs: [linting, test, build_doc_dryrun, build-dryrun]
154154
if: github.event_name == 'create' && startsWith(github.ref, 'refs/tags/v')
155155
steps:
156-
- uses: actions/checkout@v3
156+
- uses: actions/checkout@v4
157157
- name: Set up Python 3.9
158-
uses: actions/setup-python@v4
158+
uses: actions/setup-python@v5
159159
with:
160160
python-version: 3.9
161161
check-latest: true

0 commit comments

Comments
 (0)