Skip to content

Commit 1ad9014

Browse files
committed
Use latest actions
1 parent 9a7d60d commit 1ad9014

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

.github/workflows/build-and-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,23 @@ jobs:
3939
needs: [call-macos-build, call-linux-build, call-windows-build, call-python-build]
4040
steps:
4141
# Download the generated app files that are part of the release
42-
- uses: actions/download-artifact@v3
42+
- uses: actions/download-artifact@v4
4343
with:
4444
name: ${{ needs.call-macos-build.outputs.build-file }}
45-
- uses: actions/download-artifact@v3
45+
- uses: actions/download-artifact@v4
4646
with:
4747
name: ${{ needs.call-linux-build.outputs.build-file }}
48-
- uses: actions/download-artifact@v3
48+
- uses: actions/download-artifact@v4
4949
with:
5050
name: ${{ needs.call-windows-build.outputs.build-file }}
51-
- uses: actions/download-artifact@v3
51+
- uses: actions/download-artifact@v4
5252
with:
5353
name: ${{ needs.call-python-build.outputs.build-file }}
5454
- name: Output Listing
5555
run: ls -la
5656

5757
- name: Publish Release
58-
uses: softprops/action-gh-release@v1
58+
uses: softprops/action-gh-release@v2
5959
with:
6060
files: |
6161
${{ needs.call-macos-build.outputs.build-file }}

.github/workflows/build-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
# Steps represent a sequence of tasks that will be executed as part of the job
2626
steps:
2727
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28-
- uses: actions/checkout@v3
29-
- uses: actions/setup-python@v4
28+
- uses: actions/checkout@v4
29+
- uses: actions/setup-python@v5
3030
with:
3131
python-version: '3.10'
3232

@@ -45,7 +45,7 @@ jobs:
4545
gzip RTKUploader
4646
mv RTKUploader.gz RTKUploader.linux.gz
4747
48-
- uses: actions/upload-artifact@v3
48+
- uses: actions/upload-artifact@v4
4949
with:
5050
name: RTKUploader.linux.gz
5151
path: RTKUploader.linux.gz

.github/workflows/build-macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
# Steps represent a sequence of tasks that will be executed as part of the job
2626
steps:
2727
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28-
- uses: actions/checkout@v3
29-
- uses: actions/setup-python@v4
28+
- uses: actions/checkout@v4
29+
- uses: actions/setup-python@v5
3030
with:
3131
python-version: '3.10'
3232

@@ -47,7 +47,7 @@ jobs:
4747
mv "RTKUploader.app" "tmp/"
4848
create-dmg --volicon "RTK_Firmware_Uploader/resource/sparkdisk.icns" --background "RTK_Firmware_Uploader/resource/sfe_logo_med.png" --hide-extension "RTKUploader.app" --icon "RTKUploader.app" 100 100 --window-size 600 440 --app-drop-link 400 100 "RTKUploader.dmg" "tmp/"
4949
50-
- uses: actions/upload-artifact@v3
50+
- uses: actions/upload-artifact@v4
5151
with:
5252
name: RTKUploader.dmg
5353
path: RTKUploader.dmg

.github/workflows/build-python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
# Steps represent a sequence of tasks that will be executed as part of the job
3030
steps:
3131
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
32-
- uses: actions/checkout@v3
33-
- uses: actions/setup-python@v4
32+
- uses: actions/checkout@v4
33+
- uses: actions/setup-python@v5
3434
with:
3535
python-version: '3.10'
3636

@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
python setup.py sdist
4646
47-
- uses: actions/upload-artifact@v3
47+
- uses: actions/upload-artifact@v4
4848
with:
4949
name: python-install-package
5050
path: dist

.github/workflows/build-windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
# Steps represent a sequence of tasks that will be executed as part of the job
2626
steps:
2727
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28-
- uses: actions/checkout@v3
29-
- uses: actions/setup-python@v4
28+
- uses: actions/checkout@v4
29+
- uses: actions/setup-python@v5
3030
with:
3131
python-version: '3.10'
3232

@@ -55,7 +55,7 @@ jobs:
5555
}
5656
Compress-Archive @compress
5757
58-
- uses: actions/upload-artifact@v3
58+
- uses: actions/upload-artifact@v4
5959
with:
6060
name: RTKUploader.win.zip
6161
path: RTKUploader.win.zip

0 commit comments

Comments
 (0)