Skip to content

Commit afc28b3

Browse files
committed
chore: update github actions dependencies
1 parent cc3ab6f commit afc28b3

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
- "pypy-3.8"
2323
- "pypy-3.9"
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626
- name: Setup Python ${{ matrix.python }}
27-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v4
2828
with:
2929
python-version: ${{ matrix.python }}
3030
- name: Install dependencies
@@ -38,9 +38,9 @@ jobs:
3838
matrix:
3939
env: [generate-integration-files, type, lint, format]
4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v3
4242
- name: Setup Python
43-
uses: actions/setup-python@v2
43+
uses: actions/setup-python@v4
4444
with:
4545
python-version: "3.11"
4646
- name: Install dependencies
@@ -52,18 +52,18 @@ jobs:
5252
needs: [tests-py, tests-misc]
5353
runs-on: ubuntu-latest
5454
steps:
55-
- uses: actions/checkout@v2
55+
- uses: actions/checkout@v3
5656
with:
5757
# fetch all commits for setuptools_scm
5858
fetch-depth: 0
5959
- name: Setup Python
60-
uses: actions/setup-python@v2
60+
uses: actions/setup-python@v4
6161
with:
6262
python-version: "3.11"
6363
- name: Build
6464
run: python setup.py sdist bdist_wheel
6565
- name: Save build artifacts
66-
uses: actions/upload-artifact@v2
66+
uses: actions/upload-artifact@v3
6767
with:
6868
name: dist
6969
path: dist
@@ -74,11 +74,11 @@ jobs:
7474
runs-on: ubuntu-latest
7575
steps:
7676
- name: Restore build artifacts
77-
uses: actions/download-artifact@v2
77+
uses: actions/download-artifact@v3
7878
with:
7979
name: dist
8080
path: dist
8181
- name: Publish to PyPI
82-
uses: pypa/gh-action-pypi-publish@master
82+
uses: pypa/gh-action-pypi-publish@release/v1
8383
with:
8484
password: ${{ secrets.pypi_password }}

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ adheres to [Semantic Versioning](https://semver.org/).
1515
- Refactor a descriptor following PEP 487
1616
- Add tests for CPython 3.11 and PyPy 3.9
1717
- Use CPython 3.11 for misc. tests
18+
- Update Github actions dependencies
1819

1920
## [0.4.0] - 2022-01-09
2021

0 commit comments

Comments
 (0)