Skip to content

Commit

Permalink
[chore] Downgrade actions/download-artifact to v3 (open-telemetry#30103)
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerHelmuth authored and cparkins committed Jan 10, 2024
1 parent c92c46f commit 6a3b954
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ jobs:
needs: [unittest]
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: coverage-artifacts
- name: Upload coverage report
Expand Down Expand Up @@ -477,7 +477,7 @@ jobs:
- name: Install fpm
run: gem install --no-document fpm -v 1.11.0
- name: Download Collector Binaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: collector-binaries
path: bin/
Expand Down Expand Up @@ -514,7 +514,7 @@ jobs:
with:
fetch-depth: 0
- name: Download Binaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: collector-binaries
path: ./bin/
Expand Down Expand Up @@ -547,12 +547,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Download Binaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: collector-binaries
path: ./bin/
- name: Download Packages
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: collector-packages
path: ./dist/
Expand Down Expand Up @@ -588,13 +588,13 @@ jobs:
if: steps.go-cache.outputs.cache-hit != 'true'
run: make install-tools
- name: Download Binaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: collector-binaries
path: ./bin/
- run: chmod +x bin/*
- name: Download Packages
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: collector-packages
path: ./dist/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
if: steps.go-cache.outputs.cache-hit != 'true'
run: make -j2 gomoddownload
- name: Download Collector Binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: collector-binary
path: bin/
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
run: |
kubectl get csr -o=jsonpath='{range.items[?(@.spec.signerName=="kubernetes.io/kubelet-serving")]}{.metadata.name}{" "}{end}' | xargs kubectl certificate approve
- name: Download artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: otelcontribcol
path: /tmp
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
if: steps.go-cache.outputs.cache-hit != 'true'
run: make -j2 gomoddownload
- name: Download Collector Binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: collector-binary
path: bin/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/load-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
run: make install-tools
- run: mkdir -p results && touch results/TESTRESULTS.md
- name: Download Collector Binaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: collector-binaries
path: bin/
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: benchmark-results
path: results
Expand Down

0 comments on commit 6a3b954

Please sign in to comment.