Skip to content

Commit f486d3b

Browse files
authored
Fix release workflow (#528)
1 parent 1360515 commit f486d3b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
matrix:
1515
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v2
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies
@@ -33,6 +33,6 @@ jobs:
3333
- name: Test with tox
3434
run: tox -r
3535
- name: Upload coverage
36-
uses: codecov/codecov-action@v1
36+
uses: codecov/codecov-action@v4
3737
with:
3838
name: Python ${{ matrix.python-version }} Codecov

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414

1515
- name: Set up Python
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: "3.x"
1919

@@ -29,8 +29,8 @@ jobs:
2929
twine check dist/*
3030
3131
- name: Upload packages to Jazzband
32-
uses: pypa/gh-action-pypi-publish@master
32+
uses: pypa/gh-action-pypi-publish@release/v1
3333
with:
3434
user: jazzband
3535
password: ${{ secrets.JAZZBAND_RELEASE_KEY }}
36-
repository_url: https://jazzband.co/projects/django-dbbackup/upload
36+
repository-url: https://jazzband.co/projects/django-dbbackup/upload

0 commit comments

Comments
 (0)