Skip to content

Commit 0b2378d

Browse files
committed
ci: update workflow actions
1 parent 181b56e commit 0b2378d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
legacyModApiUrl: 'https://github.com/emd4600/Spore-ModAPI/releases/latest/download/SporeModAPIlegacydlls.zip'
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
- uses: ilammy/msvc-dev-cmd@v1
@@ -57,12 +57,12 @@ jobs:
5757
5858
msbuild Package\ModAPI.Updater /p:Configuration=Release
5959
- name: Upload ModAPI.InterimSetup
60-
uses: actions/upload-artifact@v4
60+
uses: actions/upload-artifact@v6
6161
with:
6262
name: ModAPI.InterimSetup-${{ env.GIT_REVISION }}
6363
path: Package/ModAPI.InterimSetup/bin/Release/*.exe
6464
- name: Upload ModAPI.Updater
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v6
6666
with:
6767
name: ModAPI.Updater-${{ env.GIT_REVISION }}
6868
path: Package/ModAPI.Updater/bin/Release/*.exe
@@ -71,20 +71,20 @@ jobs:
7171
needs: [ build ]
7272
if: github.ref_type == 'tag'
7373
steps:
74-
- uses: actions/checkout@v4
74+
- uses: actions/checkout@v6
7575
with:
7676
fetch-depth: 0
7777
- name: Prepare Environment
7878
run: |
7979
$env:revision = git describe --tags --always
8080
echo "GIT_REVISION=$env:revision" >> $env:GITHUB_ENV
8181
- name: Download ModAPI.InterimSetup
82-
uses: actions/download-artifact@v4
82+
uses: actions/download-artifact@v7
8383
with:
8484
name: ModAPI.InterimSetup-${{ env.GIT_REVISION }}
8585
path: artifact
8686
- name: Download ModAPI.Updater
87-
uses: actions/download-artifact@v4
87+
uses: actions/download-artifact@v7
8888
with:
8989
name: ModAPI.Updater-${{ env.GIT_REVISION }}
9090
path: artifact
@@ -116,15 +116,15 @@ jobs:
116116
needs: [ build ]
117117
if: github.ref_type == 'tag'
118118
steps:
119-
- uses: actions/checkout@v4
119+
- uses: actions/checkout@v6
120120
with:
121121
fetch-depth: 0
122122
- name: Prepare Environment
123123
run: |
124124
$env:revision = git describe --tags --always
125125
echo "GIT_REVISION=$env:revision" >> $env:GITHUB_ENV
126126
- name: Download ModAPI.Updater
127-
uses: actions/download-artifact@v4
127+
uses: actions/download-artifact@v7
128128
with:
129129
name: ModAPI.Updater-${{ env.GIT_REVISION }}
130130
path: artifact

0 commit comments

Comments
 (0)