Skip to content

Commit f97c514

Browse files
authored
[chore] Downgrade actions/download-artifact to v3 (open-telemetry#30103)
Related to open-telemetry#30102
1 parent 64853f2 commit f97c514

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/build-and-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ jobs:
297297
needs: [unittest]
298298
steps:
299299
- uses: actions/checkout@v4
300-
- uses: actions/download-artifact@v4
300+
- uses: actions/download-artifact@v3
301301
with:
302302
name: coverage-artifacts
303303
- name: Upload coverage report
@@ -477,7 +477,7 @@ jobs:
477477
- name: Install fpm
478478
run: gem install --no-document fpm -v 1.11.0
479479
- name: Download Collector Binaries
480-
uses: actions/download-artifact@v4
480+
uses: actions/download-artifact@v3
481481
with:
482482
name: collector-binaries
483483
path: bin/
@@ -514,7 +514,7 @@ jobs:
514514
with:
515515
fetch-depth: 0
516516
- name: Download Binaries
517-
uses: actions/download-artifact@v4
517+
uses: actions/download-artifact@v3
518518
with:
519519
name: collector-binaries
520520
path: ./bin/
@@ -547,12 +547,12 @@ jobs:
547547
steps:
548548
- uses: actions/checkout@v4
549549
- name: Download Binaries
550-
uses: actions/download-artifact@v4
550+
uses: actions/download-artifact@v3
551551
with:
552552
name: collector-binaries
553553
path: ./bin/
554554
- name: Download Packages
555-
uses: actions/download-artifact@v4
555+
uses: actions/download-artifact@v3
556556
with:
557557
name: collector-packages
558558
path: ./dist/
@@ -588,13 +588,13 @@ jobs:
588588
if: steps.go-cache.outputs.cache-hit != 'true'
589589
run: make install-tools
590590
- name: Download Binaries
591-
uses: actions/download-artifact@v4
591+
uses: actions/download-artifact@v3
592592
with:
593593
name: collector-binaries
594594
path: ./bin/
595595
- run: chmod +x bin/*
596596
- name: Download Packages
597-
uses: actions/download-artifact@v4
597+
uses: actions/download-artifact@v3
598598
with:
599599
name: collector-packages
600600
path: ./dist/

.github/workflows/e2e-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
if: steps.go-cache.outputs.cache-hit != 'true'
6565
run: make -j2 gomoddownload
6666
- name: Download Collector Binary
67-
uses: actions/download-artifact@v4
67+
uses: actions/download-artifact@v3
6868
with:
6969
name: collector-binary
7070
path: bin/
@@ -117,7 +117,7 @@ jobs:
117117
run: |
118118
kubectl get csr -o=jsonpath='{range.items[?(@.spec.signerName=="kubernetes.io/kubelet-serving")]}{.metadata.name}{" "}{end}' | xargs kubectl certificate approve
119119
- name: Download artifact
120-
uses: actions/download-artifact@v4
120+
uses: actions/download-artifact@v3
121121
with:
122122
name: otelcontribcol
123123
path: /tmp
@@ -165,7 +165,7 @@ jobs:
165165
if: steps.go-cache.outputs.cache-hit != 'true'
166166
run: make -j2 gomoddownload
167167
- name: Download Collector Binary
168-
uses: actions/download-artifact@v4
168+
uses: actions/download-artifact@v3
169169
with:
170170
name: collector-binary
171171
path: bin/

.github/workflows/load-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
run: make install-tools
8585
- run: mkdir -p results && touch results/TESTRESULTS.md
8686
- name: Download Collector Binaries
87-
uses: actions/download-artifact@v4
87+
uses: actions/download-artifact@v3
8888
with:
8989
name: collector-binaries
9090
path: bin/
@@ -123,7 +123,7 @@ jobs:
123123
if: github.event_name != 'pull_request'
124124
steps:
125125
- uses: actions/checkout@v4
126-
- uses: actions/download-artifact@v4
126+
- uses: actions/download-artifact@v3
127127
with:
128128
name: benchmark-results
129129
path: results

0 commit comments

Comments
 (0)