Skip to content

Commit

Permalink
fix: workflow warnings (#155)
Browse files Browse the repository at this point in the history
Fixed workflow warnings being generated due to node 12 deprecation.
  • Loading branch information
kushagra189 authored Nov 7, 2022
1 parent 28a523a commit de93972
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
mongodb-port: [12345]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.py-version-img[0] }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py-version-img[0] }}
- name: Install requirements
Expand All @@ -51,7 +51,7 @@ jobs:
coverage run --source foca -m pytest -W ignore::DeprecationWarning
coverage xml
- name: Submit Report to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Build & Publish image to DockerHub
env:
DOCKERHUB_ORG: ${{ secrets.DOCKERHUB_ORG }}
Expand Down

0 comments on commit de93972

Please sign in to comment.