Skip to content

Commit abd2f9f

Browse files
authored
Bump versions and fix typo in publish-release github action (#109)
1 parent dd90950 commit abd2f9f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/publish-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/setup-python@v2
15+
- uses: actions/checkout@v3
16+
- uses: actions/setup-python@v4
1717
with:
1818
python-version: '3.9'
1919

@@ -23,15 +23,15 @@ jobs:
2323
- name: build
2424
run: python -m build
2525

26-
- uses: actions/upload-artifacts@v2
26+
- uses: actions/upload-artifact@v3
2727
with:
2828
path: dist
2929

3030
publish-pypi:
3131
runs-on: ubuntu-latest
3232
needs: [build]
3333
steps:
34-
- uses: actions/download-artifact@v2
34+
- uses: actions/download-artifact@v3
3535
with:
3636
name: artifact
3737
path: dist

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### Added
99
- [PR 106](https://github.com/salesforce/django-declarative-apis/pull/106) Test against Python 3.11 in PR checks
1010
- [PR 107](https://github.com/salesforce/django-declarative-apis/pull/107) Update to use pyproject.toml
11+
- [PR 109](https://github.com/salesforce/django-declarative-apis/pull/109) Update Github actions
1112

1213
# [0.24.0] - 2022-11-03
1314
### Added

0 commit comments

Comments
 (0)