Skip to content

Commit

Permalink
Merge pull request #65 from dpprdan/update_actions
Browse files Browse the repository at this point in the history
chore: update actions to latest versions
  • Loading branch information
TomasBeuzen authored Aug 22, 2023
2 parents 0ed5f7e + d38d597 commit 70b0b41
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions {{ cookiecutter.__package_slug }}/.github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
# Define job steps
steps:
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "{{ cookiecutter.python_version }}"

- name: Check-out repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install poetry
uses: snok/install-poetry@v1
Expand All @@ -27,7 +27,7 @@ jobs:
run: poetry run pytest tests/ --cov={{ cookiecutter.__package_slug }} --cov-report=xml

- name: Use Codecov to track coverage
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml # coverage report

Expand All @@ -47,12 +47,12 @@ jobs:
# Define job steps
steps:
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "{{ cookiecutter.python_version }}"

- name: Check-out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions {{ cookiecutter.__package_slug }}/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
# Define job steps
steps:
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "{{ cookiecutter.python_version }}"

- name: Check-out repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install poetry
uses: snok/install-poetry@v1
Expand All @@ -27,7 +27,7 @@ jobs:
run: poetry run pytest tests/ --cov={{ cookiecutter.__package_slug }} --cov-report=xml

- name: Use Codecov to track coverage
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml # coverage report

Expand Down

0 comments on commit 70b0b41

Please sign in to comment.