Skip to content

Commit eade5a7

Browse files
authored
Update github-actions (#76)
2 parents c0015e0 + 3681874 commit eade5a7

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/deploy.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
with:
2626
fetch-depth: 0
2727

28-
- uses: hynek/build-and-inspect-python-package@v1
28+
- uses: hynek/build-and-inspect-python-package@v2
2929

3030
# Upload to Test PyPI on every commit on main.
3131
release-test-pypi:
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: Download packages built by build-and-inspect-python-package
43-
uses: actions/download-artifact@v3
43+
uses: actions/download-artifact@v4
4444
with:
4545
name: Packages
4646
path: dist
@@ -63,7 +63,7 @@ jobs:
6363

6464
steps:
6565
- name: Download packages built by build-and-inspect-python-package
66-
uses: actions/download-artifact@v3
66+
uses: actions/download-artifact@v4
6767
with:
6868
name: Packages
6969
path: dist

.github/workflows/labels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
sync:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- uses: micnncim/action-label-syncer@v1
1717
with:
1818
prune: false

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-python@v4
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-python@v5
1515
with:
1616
python-version: "3.x"
1717
- uses: pre-commit/[email protected]

.github/workflows/release-drafter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
# Drafts your next release notes as pull requests are merged into "main"
32-
- uses: release-drafter/release-drafter@v5
32+
- uses: release-drafter/release-drafter@v6
3333
env:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/require-pr-label.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
issues: write
1313

1414
steps:
15-
- uses: mheap/github-action-required-labels@v4
15+
- uses: mheap/github-action-required-labels@v5
1616
with:
1717
mode: minimum
1818
count: 1

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
os: [macos-latest, ubuntu-latest]
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
allow-prereleases: true
@@ -36,7 +36,7 @@ jobs:
3636
tox -e py
3737
3838
- name: Upload coverage
39-
uses: codecov/codecov-action@v3
39+
uses: codecov/codecov-action@v3.1.5
4040
with:
4141
flags: ${{ matrix.os }}
4242
name: ${{ matrix.os }} Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)