Skip to content

Commit

Permalink
chore(deps): update actions
Browse files Browse the repository at this point in the history
| datasource  | package              | from | to |
| ----------- | -------------------- | ---- | -- |
| github-tags | actions/checkout     | v3   | v4 |
| github-tags | actions/setup-node   | v3   | v4 |
| github-tags | actions/setup-python | v3   | v5 |
  • Loading branch information
renovate[bot] authored Dec 6, 2023
1 parent 4c36043 commit 35e10ac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
test_js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- uses: actions/cache@v3
Expand All @@ -24,8 +24,8 @@ jobs:
test_python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- run: pip install -e . && pip install -r requirements.txt && pip install coveralls==3.0.1
Expand All @@ -49,8 +49,8 @@ jobs:
- python: "3.9"
- python: "3.10"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: pip install -e . && pip install $(cat requirements.txt | grep pytest)
Expand Down

0 comments on commit 35e10ac

Please sign in to comment.