Skip to content

Commit 3d162be

Browse files
authored
Update artifact management actions to v3 in CI
v2 actions have been deprecated. See: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
1 parent ec42ea0 commit 3d162be

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,13 +165,13 @@ jobs:
165165
zip -Rq ${{github.workspace}}/artifacts/codecompass-${{ matrix.os }}-${{ matrix.db }}-compiletime.zip *.c *.h *.cpp *.hpp *.cxx *.hxx *.ixx *.js compile_commands.json
166166
167167
- name: Upload CodeCompass binaries
168-
uses: actions/upload-artifact@v2
168+
uses: actions/upload-artifact@v3
169169
with:
170170
name: codecompass-${{ matrix.os }}-${{ matrix.db }}-bin
171171
path: ${{github.workspace}}/artifacts/codecompass-${{ matrix.os }}-${{ matrix.db }}-bin.zip
172172

173173
- name: Upload CodeCompass compile-time source files
174-
uses: actions/upload-artifact@v2
174+
uses: actions/upload-artifact@v3
175175
with:
176176
name: codecompass-${{ matrix.os }}-${{ matrix.db }}-compiletime
177177
path: ${{github.workspace}}/artifacts/codecompass-${{ matrix.os }}-${{ matrix.db }}-compiletime.zip
@@ -241,13 +241,13 @@ jobs:
241241
${{ matrix.os }}-compile-install-${{ needs.build.outputs.ubuntu-22-04-compile-hash-key }}
242242
243243
- name: Download CodeCompass binaries
244-
uses: actions/download-artifact@v2
244+
uses: actions/download-artifact@v3
245245
with:
246246
name: codecompass-${{ matrix.os }}-${{ matrix.db }}-bin
247247
path: ${{github.workspace}}/artifacts
248248

249249
- name: Download CodeCompass compile-time source files
250-
uses: actions/download-artifact@v2
250+
uses: actions/download-artifact@v3
251251
with:
252252
name: codecompass-${{ matrix.os }}-${{ matrix.db }}-compiletime
253253
path: ${{github.workspace}}/artifacts

0 commit comments

Comments
 (0)