Skip to content

Commit eaa71b0

Browse files
chore(ci)(deps): bump actions/upload-artifact from 4 to 5 (#283)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 31c211c commit eaa71b0

8 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/ci-native.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ jobs:
221221
./scripts/ci-check-rust.sh "$TARGET"
222222
223223
- name: Upload binary artifacts
224-
uses: actions/upload-artifact@v4
224+
uses: actions/upload-artifact@v5
225225
with:
226226
name: rust-binaries-${{ matrix.target }}-${{ matrix.ubuntu-version }}
227227
path: target/${{ matrix.target }}/release/terraphim*
@@ -243,7 +243,7 @@ jobs:
243243
244244
- name: Upload .deb packages
245245
if: contains(matrix.target, 'linux') && !contains(matrix.target, 'musl')
246-
uses: actions/upload-artifact@v4
246+
uses: actions/upload-artifact@v5
247247
with:
248248
name: deb-packages-${{ matrix.target }}-${{ matrix.ubuntu-version }}
249249
path: target/${{ matrix.target }}/debian/*.deb
@@ -397,7 +397,7 @@ jobs:
397397
apt-ftparchive release . > Release
398398
399399
- name: Upload package repository
400-
uses: actions/upload-artifact@v4
400+
uses: actions/upload-artifact@v5
401401
with:
402402
name: deb-repository-ubuntu-${{ matrix.ubuntu-version }}
403403
path: packages/ubuntu-${{ matrix.ubuntu-version }}/

.github/workflows/ci-optimized.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
docker save "${IMAGE_TAG}" | gzip > terraphim-builder-image.tar.gz
108108
109109
- name: Upload Docker image artifact
110-
uses: actions/upload-artifact@v4
110+
uses: actions/upload-artifact@v5
111111
with:
112112
name: terraphim-builder-image
113113
path: terraphim-builder-image.tar.gz
@@ -220,15 +220,15 @@ jobs:
220220
cargo deb --target ${{ matrix.target }} --package terraphim_server --no-build
221221
222222
- name: Upload binary artifacts
223-
uses: actions/upload-artifact@v4
223+
uses: actions/upload-artifact@v5
224224
with:
225225
name: rust-binaries-${{ matrix.target }}-${{ matrix.ubuntu-version }}
226226
path: target/${{ matrix.target }}/release/terraphim*
227227
retention-days: 30
228228

229229
- name: Upload .deb packages
230230
if: contains(matrix.target, 'linux') && !contains(matrix.target, 'musl')
231-
uses: actions/upload-artifact@v4
231+
uses: actions/upload-artifact@v5
232232
with:
233233
name: deb-packages-${{ matrix.target }}-${{ matrix.ubuntu-version }}
234234
path: target/${{ matrix.target }}/debian/*.deb

.github/workflows/earthly-runner.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
run: earthly --ci ./desktop+build
8080

8181
- name: Upload frontend artifacts
82-
uses: actions/upload-artifact@v4
82+
uses: actions/upload-artifact@v5
8383
with:
8484
name: frontend-dist
8585
path: desktop/dist
@@ -103,7 +103,7 @@ jobs:
103103
earthly --ci +build-debug-native
104104
105105
- name: Upload native binaries
106-
uses: actions/upload-artifact@v4
106+
uses: actions/upload-artifact@v5
107107
with:
108108
name: native-binaries
109109
path: artifact/bin/
@@ -149,7 +149,7 @@ jobs:
149149

150150
- name: Upload cross-compiled binaries
151151
if: success()
152-
uses: actions/upload-artifact@v4
152+
uses: actions/upload-artifact@v5
153153
with:
154154
name: cross-binaries-${{ matrix.target }}
155155
path: artifact/bin/

.github/workflows/frontend-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
fi
9595
9696
- name: Upload frontend artifacts
97-
uses: actions/upload-artifact@v4
97+
uses: actions/upload-artifact@v5
9898
with:
9999
name: frontend-dist
100100
path: desktop/dist

.github/workflows/release-comprehensive.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
copy target\${{ matrix.target }}\release\terraphim-tui.exe artifacts\terraphim-tui-${{ matrix.target }}.exe
8989
9090
- name: Upload binary artifacts
91-
uses: actions/upload-artifact@v4
91+
uses: actions/upload-artifact@v5
9292
with:
9393
name: binaries-${{ matrix.target }}
9494
path: artifacts/*
@@ -124,7 +124,7 @@ jobs:
124124
cargo deb -p terraphim-ai-desktop --output target/debian/
125125
126126
- name: Upload Debian packages
127-
uses: actions/upload-artifact@v4
127+
uses: actions/upload-artifact@v5
128128
with:
129129
name: debian-packages
130130
path: target/debian/*.deb
@@ -185,7 +185,7 @@ jobs:
185185

186186
- name: Upload desktop artifacts (macOS)
187187
if: matrix.platform == 'macos-latest'
188-
uses: actions/upload-artifact@v4
188+
uses: actions/upload-artifact@v5
189189
with:
190190
name: desktop-macos
191191
path: |
@@ -194,7 +194,7 @@ jobs:
194194
195195
- name: Upload desktop artifacts (Linux)
196196
if: startsWith(matrix.platform, 'ubuntu-')
197-
uses: actions/upload-artifact@v4
197+
uses: actions/upload-artifact@v5
198198
with:
199199
name: desktop-linux-${{ matrix.platform }}
200200
path: |
@@ -203,7 +203,7 @@ jobs:
203203
204204
- name: Upload desktop artifacts (Windows)
205205
if: matrix.platform == 'windows-latest'
206-
uses: actions/upload-artifact@v4
206+
uses: actions/upload-artifact@v5
207207
with:
208208
name: desktop-windows
209209
path: |

.github/workflows/rust-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
echo "deb-package=target/$NEW_NAME" >> $GITHUB_OUTPUT
182182
183183
- name: Upload binary artifacts
184-
uses: actions/upload-artifact@v4
184+
uses: actions/upload-artifact@v5
185185
with:
186186
name: binaries-${{ matrix.target }}-ubuntu${{ matrix.ubuntu-version }}
187187
path: |
@@ -192,7 +192,7 @@ jobs:
192192

193193
- name: Upload .deb package
194194
if: contains(matrix.target, 'linux') && !contains(matrix.target, 'musl')
195-
uses: actions/upload-artifact@v4
195+
uses: actions/upload-artifact@v5
196196
with:
197197
name: deb-package-${{ matrix.target }}-ubuntu${{ matrix.ubuntu-version }}
198198
path: target/*.deb

.github/workflows/tauri-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
9494
- name: Upload desktop artifacts (macOS)
9595
if: matrix.platform == 'macos-latest'
96-
uses: actions/upload-artifact@v4
96+
uses: actions/upload-artifact@v5
9797
with:
9898
name: desktop-macos
9999
path: |
@@ -103,7 +103,7 @@ jobs:
103103

104104
- name: Upload desktop artifacts (Linux)
105105
if: matrix.platform == 'ubuntu-20.04'
106-
uses: actions/upload-artifact@v4
106+
uses: actions/upload-artifact@v5
107107
with:
108108
name: desktop-linux
109109
path: |
@@ -113,7 +113,7 @@ jobs:
113113

114114
- name: Upload desktop artifacts (Windows)
115115
if: matrix.platform == 'windows-latest'
116-
uses: actions/upload-artifact@v4
116+
uses: actions/upload-artifact@v5
117117
with:
118118
name: desktop-windows
119119
path: |

.github/workflows/test-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
echo "Test artifact for ubuntu-${{ matrix.ubuntu-version }}" > test-output/test-file.txt
9696
9797
- name: Upload test artifact
98-
uses: actions/upload-artifact@v4
98+
uses: actions/upload-artifact@v5
9999
with:
100100
name: test-artifact-${{ matrix.ubuntu-version }}
101101
path: test-output/

0 commit comments

Comments
 (0)