Skip to content

Commit 4812978

Browse files
committed
Update github actions in build script
1 parent ffe744d commit 4812978

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- 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
2020
with:
2121
name: dbip
2222
path: "dbip.mmdb"
@@ -48,7 +48,7 @@ jobs:
4848
- uses: actions/checkout@v3
4949

5050
# Download the previously uploaded artifacts
51-
- uses: actions/download-artifact@v3
51+
- uses: actions/download-artifact@v4
5252
id: download
5353
with:
5454
name: dbip
@@ -102,7 +102,7 @@ jobs:
102102
echo ${{ steps.tauri_build.outputs.artifactPaths }}
103103
104104
# The artifacts output can now be used to upload the artifacts
105-
- uses: actions/upload-artifact@v3
105+
- uses: actions/upload-artifact@v4
106106
with:
107107
name: ${{ matrix.platform.rust_target }}
108108
path: "${{ join(fromJSON(steps.tauri_build.outputs.artifactPaths), '\n') }}"
@@ -116,7 +116,7 @@ jobs:
116116
zip -9 -r "trguing-web-$GIT_VERSION.zip" ./* -x create\* -x \*.map -x \*flag-icons\*
117117
echo "ZIPFILE=trguing-web-$GIT_VERSION.zip" >> $GITHUB_OUTPUT
118118
119-
- uses: actions/upload-artifact@v3
119+
- uses: actions/upload-artifact@v4
120120
if: matrix.platform.os == 'ubuntu-latest'
121121
with:
122122
name: build web
@@ -132,7 +132,7 @@ jobs:
132132
- uses: actions/checkout@v3
133133

134134
# Download the previously uploaded artifacts
135-
- uses: actions/download-artifact@v3
135+
- uses: actions/download-artifact@v4
136136
id: download
137137
with:
138138
path: artifacts
@@ -143,7 +143,7 @@ jobs:
143143
- name: Downloaded artifacts
144144
run: ls -lhR artifacts/
145145

146-
# Generate chagnelog
146+
# Generate changelog
147147
- id: prevtag
148148
run: |
149149
PREVIOUS_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo '')
@@ -183,7 +183,7 @@ jobs:
183183
GIT_VERSION=`git describe --tags --always`
184184
echo "GIT_VERSION=$GIT_VERSION" >> $GITHUB_OUTPUT
185185
# Download the previously uploaded artifacts
186-
- uses: actions/download-artifact@v3
186+
- uses: actions/download-artifact@v4
187187
id: download
188188
with:
189189
name: dbip

src/components/modals/common.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export function LimitedNamesList({ names, limit }: { names: string[], limit?: nu
7474

7575
return <>
7676
{t.map((s, i) => <Text key={i} mx="md" my="xs" px="sm" sx={{
77-
whiteSpace: "nowrap",
77+
whiteSpace: "pre",
7878
overflow: "hidden",
7979
textOverflow: "ellipsis",
8080
boxShadow: "inset 0 0 0 9999px rgba(133, 133, 133, 0.1)",

0 commit comments

Comments
 (0)