Skip to content

Commit e838656

Browse files
committed
chore: update GHA dependencies
1 parent 20cc23b commit e838656

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
- "pypy-3.8"
2121
- "pypy-3.9"
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v5
2424
- name: Setup Python ${{ matrix.python }}
25-
uses: actions/setup-python@v4
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: ${{ matrix.python }}
2828
- name: Install dependencies
@@ -36,9 +36,9 @@ jobs:
3636
matrix:
3737
env: [generate-integration-files, type, lint, format]
3838
steps:
39-
- uses: actions/checkout@v3
39+
- uses: actions/checkout@v5
4040
- name: Setup Python
41-
uses: actions/setup-python@v4
41+
uses: actions/setup-python@v6
4242
with:
4343
python-version: "3.11"
4444
- name: Install dependencies
@@ -50,18 +50,18 @@ jobs:
5050
needs: [tests-py, tests-misc]
5151
runs-on: ubuntu-latest
5252
steps:
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v5
5454
with:
5555
# fetch all commits for setuptools_scm
5656
fetch-depth: 0
5757
- name: Setup Python
58-
uses: actions/setup-python@v4
58+
uses: actions/setup-python@v6
5959
with:
6060
python-version: "3.11"
6161
- name: Build
6262
run: python setup.py sdist bdist_wheel
6363
- name: Save build artifacts
64-
uses: actions/upload-artifact@v3
64+
uses: actions/upload-artifact@v4
6565
with:
6666
name: dist
6767
path: dist
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: ubuntu-latest
7373
steps:
7474
- name: Restore build artifacts
75-
uses: actions/download-artifact@v3
75+
uses: actions/download-artifact@v5
7676
with:
7777
name: dist
7878
path: dist

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ adheres to [Semantic Versioning](https://semver.org/).
1212
### :house: Internal
1313

1414
- Freeze dev dependencies versions
15+
- Update GitHub actions dependencies
1516

1617
## [0.5.0] - 2023-02-27
1718

@@ -27,7 +28,7 @@ adheres to [Semantic Versioning](https://semver.org/).
2728
- Refactor a descriptor following PEP 487
2829
- Add tests for CPython 3.11 and PyPy 3.9
2930
- Use CPython 3.11 for misc. tests
30-
- Update Github actions dependencies
31+
- Update GitHub actions dependencies
3132
- Import typing modules impacted by PEP 585 based on Python version
3233

3334
## [0.4.0] - 2022-01-09

0 commit comments

Comments
 (0)