Skip to content
This repository was archived by the owner on Jun 11, 2024. It is now read-only.

Commit 322a468

Browse files
committed
update workflows
1 parent 1604fb3 commit 322a468

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/lint.yml

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

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
name: Checkout repository
1515

1616
- uses: chartboost/ruff-action@v1

.github/workflows/release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Install Python
24-
uses: actions/setup-python@v4
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: '3.12'
2727

@@ -47,7 +47,7 @@ jobs:
4747
- name: Rename binary
4848
run: mv "${{ steps.get_info.outputs.NAME }}-v${{ steps.get_info.outputs.VERSION }}.exe" "${{ steps.get_info.outputs.NAME }}-v${{ steps.get_info.outputs.VERSION }}-win-x86_64.exe"
4949

50-
- uses: actions/upload-artifact@v3
50+
- uses: actions/upload-artifact@v4
5151
name: Upload binary artifact
5252
with:
5353
name: windows-binary
@@ -64,10 +64,10 @@ jobs:
6464

6565
steps:
6666
- name: Checkout repository
67-
uses: actions/checkout@v3
67+
uses: actions/checkout@v4
6868

6969
- name: Install Python
70-
uses: actions/setup-python@v4
70+
uses: actions/setup-python@v5
7171
with:
7272
python-version: '3.12'
7373

@@ -86,7 +86,7 @@ jobs:
8686
run: mkdir -p windows-binary
8787

8888
- name: Download Windows binary
89-
uses: actions/download-artifact@v3
89+
uses: actions/download-artifact@v4
9090
with:
9191
name: windows-binary
9292
path: windows-binary

0 commit comments

Comments
 (0)