Skip to content

Commit 513374f

Browse files
ci: update github workflows action version
Signed-off-by: Saurav Sharma <[email protected]>
1 parent bc5e191 commit 513374f

File tree

3 files changed

+282
-203
lines changed

3 files changed

+282
-203
lines changed

.github/workflows/deploy_pypi.yml

Lines changed: 5 additions & 5 deletions
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.12"
1717
- name: Install Poetry
@@ -32,19 +32,19 @@ jobs:
3232
needs: publish_pypi
3333

3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
with:
3737
fetch-depth: 0
3838
- name: Generate a changelog
39-
uses: orhun/git-cliff-action@v1
39+
uses: orhun/git-cliff-action@v3
4040
id: git-cliff
4141
with:
4242
config: cliff.toml
4343
args: -vv --current --strip header
4444
env:
4545
OUTPUT: CHANGELOG.md
4646
- name: Create GitHub release
47-
uses: softprops/action-gh-release@v1
47+
uses: softprops/action-gh-release@v2
4848
with:
4949
body_path: ${{ steps.git-cliff.outputs.changelog }}
5050
env:

.github/workflows/python_app.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
16-
- uses: actions/setup-python@v4
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-python@v5
1717
with:
1818
python-version: "3.12"
19-
- uses: actions/setup-python@v4
19+
- uses: actions/setup-python@v5
2020
with:
2121
python-version: "3.11"
22-
- uses: actions/setup-python@v4
22+
- uses: actions/setup-python@v5
2323
with:
2424
python-version: "3.10"
25-
- uses: actions/setup-python@v4
25+
- uses: actions/setup-python@v5
2626
with:
2727
python-version: "3.9"
28-
- uses: actions/setup-python@v4
28+
- uses: actions/setup-python@v5
2929
with:
3030
python-version: "3.8"
3131
- name: Install Poetry

0 commit comments

Comments
 (0)