Skip to content

Commit 8e224be

Browse files
authored
Merge pull request #71 from ghazi-git/update-github-actions
update-github-actions
2 parents 54fcca9 + 9ded117 commit 8e224be

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
run:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- name: Setup Python
13-
uses: actions/setup-python@v3
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: 3.8
1616
- name: Generate coverage report
@@ -19,7 +19,7 @@ jobs:
1919
pip install django~=3.2 pytest pytest-django pytest-cov drf-spectacular django-filter
2020
pytest --cov --cov-report=xml
2121
- name: Upload coverage to Codecov
22-
uses: codecov/codecov-action@v3
22+
uses: codecov/codecov-action@v4
2323
with:
2424
token: ${{ secrets.CODECOV_TOKEN }}
2525
fail_ci_if_error: true

.github/workflows/github_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
2020
shell: bash
2121
- name: Checkout code
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
- name: Get Changelog Entry
2424
id: changelog_reader
2525
uses: mindsers/changelog-reader-action@v2

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v3
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies

0 commit comments

Comments
 (0)