Skip to content

Commit df7d316

Browse files
committed
fix: use actions/upload-artifact@v4 and download-artifact@v4
1 parent 354d7e1 commit df7d316

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/cd.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
git bundle create repo.bundle --all
114114
115115
- name: Upload bundle as artifact
116-
uses: actions/upload-artifact@v7
116+
uses: actions/upload-artifact@v4
117117
with:
118118
name: git-repo-bundle
119119
path: repo.bundle
@@ -144,7 +144,7 @@ jobs:
144144
runs-on: ${{ matrix.os }}
145145
steps:
146146
- name: Download git bundle
147-
uses: actions/download-artifact@v7
147+
uses: actions/download-artifact@v4
148148
with:
149149
name: git-repo-bundle
150150

@@ -235,7 +235,7 @@ jobs:
235235
fi
236236
237237
- name: Upload artifact
238-
uses: actions/upload-artifact@v7
238+
uses: actions/upload-artifact@v4
239239
with:
240240
name: ${{ matrix.asset_name }}-binary
241241
path: ./repo/dist/treemapper-*
@@ -253,7 +253,7 @@ jobs:
253253
id-token: write
254254
steps:
255255
- name: Download git bundle
256-
uses: actions/download-artifact@v7
256+
uses: actions/download-artifact@v4
257257
with:
258258
name: git-repo-bundle
259259

@@ -318,7 +318,7 @@ jobs:
318318
runs-on: ubuntu-latest
319319
steps:
320320
- name: Download git bundle
321-
uses: actions/download-artifact@v7
321+
uses: actions/download-artifact@v4
322322
with:
323323
name: git-repo-bundle
324324

@@ -355,7 +355,7 @@ jobs:
355355
echo "Successfully pushed version commit and tag"
356356
357357
- name: Download all build artifacts
358-
uses: actions/download-artifact@v7
358+
uses: actions/download-artifact@v4
359359
with:
360360
path: ./artifacts
361361

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
verbose: true
136136

137137
- name: Upload coverage for SonarCloud
138-
uses: actions/upload-artifact@v7
138+
uses: actions/upload-artifact@v4
139139
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'
140140
with:
141141
name: coverage-report

0 commit comments

Comments
 (0)