Skip to content

Commit 7db2aa7

Browse files
Merge branch 'main' into harder-pipeline-rewire
2 parents 04bad12 + d59e72f commit 7db2aa7

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,15 @@ jobs:
7676
# This is used by the subsequent publish-test-results.yml
7777
- name: Upload Unit Test Results
7878
if: always() && matrix.runner-os == 'ubuntu-latest' && matrix.language == 'csharp'
79-
uses: actions/upload-artifact@v5
79+
uses: actions/upload-artifact@v6
8080
with:
8181
name: Unit Test Results
8282
path: src/OctoshiftCLI.Tests/unit-tests.xml
8383

8484
# This is used by the subsequent publish-test-results.yml
8585
- name: Upload Code Coverage Report
8686
if: always() && matrix.runner-os == 'ubuntu-latest' && matrix.language == 'csharp'
87-
uses: actions/upload-artifact@v5
87+
uses: actions/upload-artifact@v6
8888
with:
8989
name: Code Coverage Report
9090
path: code-coverage-results.md
@@ -101,7 +101,7 @@ jobs:
101101
steps:
102102
# This is used by the subsequent publish-test-results.yaml
103103
- name: Upload Event File
104-
uses: actions/upload-artifact@v5
104+
uses: actions/upload-artifact@v6
105105
with:
106106
name: Event File
107107
path: ${{ github.event_path }}
@@ -141,7 +141,7 @@ jobs:
141141
run: just publish-macos
142142

143143
- name: Upload Binaries
144-
uses: actions/upload-artifact@v5
144+
uses: actions/upload-artifact@v6
145145
with:
146146
name: binaries-${{ matrix.target-os }}
147147
path: |
@@ -180,7 +180,7 @@ jobs:
180180
global-json-file: global.json
181181

182182
- name: Download Binaries
183-
uses: actions/download-artifact@v6
183+
uses: actions/download-artifact@v7
184184
with:
185185
name: binaries-${{ matrix.runner-os }}
186186
path: dist
@@ -278,7 +278,7 @@ jobs:
278278
comment_mode: off
279279

280280
- name: Upload test logs
281-
uses: actions/upload-artifact@v5
281+
uses: actions/upload-artifact@v6
282282
if: always()
283283
with:
284284
name: integration-test-logs-${{ matrix.source-vcs }}-${{ matrix.runner-os }}

.github/workflows/integration-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
SKIP_LINUX: "true"
7272

7373
- name: Upload Binaries
74-
uses: actions/upload-artifact@v5
74+
uses: actions/upload-artifact@v6
7575
with:
7676
name: binaries-${{ matrix.target-os }}
7777
path: |
@@ -113,7 +113,7 @@ jobs:
113113
global-json-file: global.json
114114

115115
- name: Download Binaries
116-
uses: actions/download-artifact@v6
116+
uses: actions/download-artifact@v7
117117
with:
118118
name: binaries-${{ matrix.runner-os }}
119119
path: dist
@@ -213,7 +213,7 @@ jobs:
213213
commit: ${{ env.PR_SHA }}
214214

215215
- name: Upload test logs
216-
uses: actions/upload-artifact@v5
216+
uses: actions/upload-artifact@v6
217217
if: always()
218218
with:
219219
name: integration-test-logs-${{ matrix.source-vcs }}-${{ matrix.runner-os }}

0 commit comments

Comments
 (0)