Skip to content

Commit a8fffc3

Browse files
committed
Update actions versions
1 parent 0c92f8a commit a8fffc3

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/close-inactive-issues.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
issues: write
1212
pull-requests: write
1313
steps:
14-
- uses: actions/stale@v5
14+
- uses: actions/stale@v9
1515
with:
1616
days-before-issue-stale: 90 # The number of days old an issue can be before marking it stale
1717
days-before-issue-close: 14 # The number of days to wait to close an issue after it being marked stale

.github/workflows/codeql-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v3

.github/workflows/release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
tests:
9-
uses: ./.github/workflows/test.yml
9+
uses: ./.github/workflows/test.yaml
1010

1111
publish-to-pypi:
1212
name: Publish to PyPI
@@ -20,13 +20,13 @@ jobs:
2020
permissions:
2121
id-token: write
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424

2525
- name: Install poetry
2626
run: pipx install poetry
2727

2828
- name: Setup Python
29-
uses: actions/setup-python@v4
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: '3.10'
3232

@@ -44,7 +44,7 @@ jobs:
4444
permissions:
4545
contents: write
4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4848

4949
- name: Check package version matches tag
5050
id: check-version
@@ -70,15 +70,15 @@ jobs:
7070
permissions:
7171
contents: write
7272
steps:
73-
- uses: actions/checkout@v3
73+
- uses: actions/checkout@v4
7474
with:
7575
fetch-depth: 0
7676

7777
- name: Install poetry
7878
run: pipx install poetry
7979

8080
- name: Setup Python
81-
uses: actions/setup-python@v4
81+
uses: actions/setup-python@v5
8282
with:
8383
python-version: '3.10'
8484
# cache: 'poetry'

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
os: [ 'ubuntu-latest' ]
1818
runs-on: ${{ matrix.os }}
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- name: Install poetry
2323
run: pipx install poetry
2424

25-
- uses: actions/setup-python@v4
25+
- uses: actions/setup-python@v5
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
# cache: 'poetry'

0 commit comments

Comments
 (0)