15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- name : Download dbip database
18
- run : wget -nv -O- "https://download.db-ip.com/free/dbip-country-lite-2024-10 .mmdb.gz" | zcat > dbip.mmdb
19
- - uses : actions/upload-artifact@v3
18
+ run : wget -nv -O- "https://download.db-ip.com/free/dbip-country-lite-2025-02 .mmdb.gz" | zcat > dbip.mmdb
19
+ - uses : actions/upload-artifact@v4
20
20
with :
21
21
name : dbip
22
22
path : " dbip.mmdb"
48
48
- uses : actions/checkout@v3
49
49
50
50
# Download the previously uploaded artifacts
51
- - uses : actions/download-artifact@v3
51
+ - uses : actions/download-artifact@v4
52
52
id : download
53
53
with :
54
54
name : dbip
@@ -102,7 +102,7 @@ jobs:
102
102
echo ${{ steps.tauri_build.outputs.artifactPaths }}
103
103
104
104
# The artifacts output can now be used to upload the artifacts
105
- - uses : actions/upload-artifact@v3
105
+ - uses : actions/upload-artifact@v4
106
106
with :
107
107
name : ${{ matrix.platform.rust_target }}
108
108
path : " ${{ join(fromJSON(steps.tauri_build.outputs.artifactPaths), '\n ') }}"
@@ -116,7 +116,7 @@ jobs:
116
116
zip -9 -r "trguing-web-$GIT_VERSION.zip" ./* -x create\* -x \*.map -x \*flag-icons\*
117
117
echo "ZIPFILE=trguing-web-$GIT_VERSION.zip" >> $GITHUB_OUTPUT
118
118
119
- - uses : actions/upload-artifact@v3
119
+ - uses : actions/upload-artifact@v4
120
120
if : matrix.platform.os == 'ubuntu-latest'
121
121
with :
122
122
name : build web
@@ -132,7 +132,7 @@ jobs:
132
132
- uses : actions/checkout@v3
133
133
134
134
# Download the previously uploaded artifacts
135
- - uses : actions/download-artifact@v3
135
+ - uses : actions/download-artifact@v4
136
136
id : download
137
137
with :
138
138
path : artifacts
@@ -143,7 +143,7 @@ jobs:
143
143
- name : Downloaded artifacts
144
144
run : ls -lhR artifacts/
145
145
146
- # Generate chagnelog
146
+ # Generate changelog
147
147
- id : prevtag
148
148
run : |
149
149
PREVIOUS_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo '')
@@ -183,7 +183,7 @@ jobs:
183
183
GIT_VERSION=`git describe --tags --always`
184
184
echo "GIT_VERSION=$GIT_VERSION" >> $GITHUB_OUTPUT
185
185
# Download the previously uploaded artifacts
186
- - uses : actions/download-artifact@v3
186
+ - uses : actions/download-artifact@v4
187
187
id : download
188
188
with :
189
189
name : dbip
0 commit comments