Skip to content

Commit

Permalink
build: bump actions/download-artifact@v4, actions/setup-python@v5, us…
Browse files Browse the repository at this point in the history
…es: actions/checkout@v4, actions/upload-artifact@v4
  • Loading branch information
FireHead90544 committed Jun 18, 2024
1 parent 86fbc09 commit debe25c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Output Release URL File
run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt
- name: Save Release URL File for publish
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: release_url
path: release_url.txt
Expand All @@ -42,9 +42,9 @@ jobs:
OUT_FILE_NAME: SenPY.exe
ASSET_MIME: application/vnd.microsoft.portable-executable
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Build with pyinstaller for ${{matrix.TARGET}}
run: ${{matrix.CMD_BUILD}}
- name: Load Release URL File from release job
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: release_url
- name: Get Release File Name & Upload URL
Expand Down

0 comments on commit debe25c

Please sign in to comment.