Skip to content

Commit 3e076a2

Browse files
chore(deps): update actions
| datasource | package | from | to | | ----------- | -------------------- | ---- | -- | | github-tags | actions/cache | v3 | v4 | | github-tags | actions/checkout | v3 | v4 | | github-tags | actions/setup-node | v3 | v4 | | github-tags | actions/setup-python | v3 | v5 |
1 parent 4c36043 commit 3e076a2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
test_js:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
13-
- uses: actions/setup-node@v3
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
1414
with:
1515
node-version-file: .nvmrc
16-
- uses: actions/cache@v3
16+
- uses: actions/cache@v4
1717
with:
1818
path: ~/.npm
1919
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -24,8 +24,8 @@ jobs:
2424
test_python:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v3
28-
- uses: actions/setup-python@v3
27+
- uses: actions/checkout@v4
28+
- uses: actions/setup-python@v5
2929
with:
3030
python-version: "3.9"
3131
- run: pip install -e . && pip install -r requirements.txt && pip install coveralls==3.0.1
@@ -49,8 +49,8 @@ jobs:
4949
- python: "3.9"
5050
- python: "3.10"
5151
steps:
52-
- uses: actions/checkout@v3
53-
- uses: actions/setup-python@v3
52+
- uses: actions/checkout@v4
53+
- uses: actions/setup-python@v5
5454
with:
5555
python-version: ${{ matrix.python }}
5656
- run: pip install -e . && pip install $(cat requirements.txt | grep pytest)

0 commit comments

Comments
 (0)