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/cache        | v3   | v4 |
| 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 Jan 17, 2024
1 parent 4c36043 commit 3e076a2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ 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
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
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 3e076a2

Please sign in to comment.