Skip to content

Commit f6fb479

Browse files
renovate[bot]cparkins
authored andcommitted
Update github-actions deps (major) (open-telemetry#30091)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/download-artifact](https://togithub.com/actions/download-artifact) | action | major | `v3` -> `v4` | | [actions/upload-artifact](https://togithub.com/actions/upload-artifact) | action | major | `v3` -> `v4` | | [ubuntu](https://togithub.com/actions/runner-images) | github-runner | major | `20.04` -> `22.04` | --- ### Release Notes <details> <summary>actions/download-artifact (actions/download-artifact)</summary> ### [`v4`](https://togithub.com/actions/download-artifact/compare/v3...v4) [Compare Source](https://togithub.com/actions/download-artifact/compare/v3...v4) </details> <details> <summary>actions/upload-artifact (actions/upload-artifact)</summary> ### [`v4`](https://togithub.com/actions/upload-artifact/compare/v3...v4) [Compare Source](https://togithub.com/actions/upload-artifact/compare/v3...v4) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent cbd52ec commit f6fb479

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ jobs:
271271
- name: Run Unit Tests With Coverage
272272
if: startsWith( matrix.go-version, '~1.20' ) # only run coverage on one version
273273
run: make gotest-with-cover GROUP=${{ matrix.group }}
274-
- uses: actions/upload-artifact@v3
274+
- uses: actions/upload-artifact@v4
275275
if: startsWith( matrix.go-version, '~1.20' ) # only run coverage on one version
276276
with:
277277
name: coverage-artifacts
@@ -297,7 +297,7 @@ jobs:
297297
needs: [unittest]
298298
steps:
299299
- uses: actions/checkout@v4
300-
- uses: actions/download-artifact@v3
300+
- uses: actions/download-artifact@v4
301301
with:
302302
name: coverage-artifacts
303303
- name: Upload coverage report
@@ -453,14 +453,14 @@ jobs:
453453
- name: Build Collector ${{ matrix.binary }}
454454
run: make GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} GOARM=${{ matrix.arm }} otelcontribcol
455455
- name: Upload Collector Binaries
456-
uses: actions/upload-artifact@v3
456+
uses: actions/upload-artifact@v4
457457
with:
458458
name: collector-binaries
459459
path: ./bin/*
460460

461461
build-package:
462462
# Use 20.04.5 until https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/16450 is resolved
463-
runs-on: ubuntu-20.04
463+
runs-on: ubuntu-22.04
464464
needs: [cross-compile]
465465
strategy:
466466
fail-fast: false
@@ -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@v3
480+
uses: actions/download-artifact@v4
481481
with:
482482
name: collector-binaries
483483
path: bin/
@@ -501,7 +501,7 @@ jobs:
501501
./internal/buildscripts/packaging/fpm/test.sh dist/otel-contrib-collector*x86_64.rpm examples/demo/otel-collector-config.yaml
502502
fi
503503
- name: Upload Packages
504-
uses: actions/upload-artifact@v3
504+
uses: actions/upload-artifact@v4
505505
with:
506506
name: collector-packages
507507
path: ./dist/*
@@ -514,7 +514,7 @@ jobs:
514514
with:
515515
fetch-depth: 0
516516
- name: Download Binaries
517-
uses: actions/download-artifact@v3
517+
uses: actions/download-artifact@v4
518518
with:
519519
name: collector-binaries
520520
path: ./bin/
@@ -536,7 +536,7 @@ jobs:
536536
- name: Validate MSI
537537
run: .\internal\buildscripts\packaging\msi\make.ps1 Confirm-MSI
538538
- name: Upload MSI
539-
uses: actions/upload-artifact@v3
539+
uses: actions/upload-artifact@v4
540540
with:
541541
name: collector-packages
542542
path: ./dist/*.msi
@@ -547,12 +547,12 @@ jobs:
547547
steps:
548548
- uses: actions/checkout@v4
549549
- name: Download Binaries
550-
uses: actions/download-artifact@v3
550+
uses: actions/download-artifact@v4
551551
with:
552552
name: collector-binaries
553553
path: ./bin/
554554
- name: Download Packages
555-
uses: actions/download-artifact@v3
555+
uses: actions/download-artifact@v4
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@v3
591+
uses: actions/download-artifact@v4
592592
with:
593593
name: collector-binaries
594594
path: ./bin/
595595
- run: chmod +x bin/*
596596
- name: Download Packages
597-
uses: actions/download-artifact@v3
597+
uses: actions/download-artifact@v4
598598
with:
599599
name: collector-packages
600600
path: ./dist/

.github/workflows/e2e-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Build Collector
3838
run: make otelcontribcol
3939
- name: Upload Collector Binary
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: collector-binary
4343
path: ./bin/*
@@ -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@v3
67+
uses: actions/download-artifact@v4
6868
with:
6969
name: collector-binary
7070
path: bin/
@@ -76,7 +76,7 @@ jobs:
7676
run: |
7777
docker save otelcontribcol:latest > /tmp/otelcontribcol.tar
7878
- name: Upload artifact
79-
uses: actions/upload-artifact@v3
79+
uses: actions/upload-artifact@v4
8080
with:
8181
name: otelcontribcol
8282
path: /tmp/otelcontribcol.tar
@@ -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@v3
120+
uses: actions/download-artifact@v4
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@v3
168+
uses: actions/download-artifact@v4
169169
with:
170170
name: collector-binary
171171
path: bin/

.github/workflows/load-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
run: make install-tools
4747
- run: make oteltestbedcol
4848
- name: Upload Collector Binaries
49-
uses: actions/upload-artifact@v3
49+
uses: actions/upload-artifact@v4
5050
with:
5151
name: collector-binaries
5252
path: ./bin/*
@@ -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@v3
87+
uses: actions/download-artifact@v4
8888
with:
8989
name: collector-binaries
9090
path: bin/
@@ -103,12 +103,12 @@ jobs:
103103
- name: Upload Test Results
104104
if: ${{ failure() || success() }}
105105
continue-on-error: true
106-
uses: actions/upload-artifact@v3
106+
uses: actions/upload-artifact@v4
107107
with:
108108
path: ./*.tar
109109
- run: cp testbed/tests/results/benchmarks.json testbed/tests/results/${{steps.filename.outputs.name}}.json
110110
- name: Upload benchmarks.json
111-
uses: actions/upload-artifact@v3
111+
uses: actions/upload-artifact@v4
112112
with:
113113
name: benchmark-results
114114
path: testbed/tests/results/${{steps.filename.outputs.name}}.json
@@ -123,7 +123,7 @@ jobs:
123123
if: github.event_name != 'pull_request'
124124
steps:
125125
- uses: actions/checkout@v4
126-
- uses: actions/download-artifact@v3
126+
- uses: actions/download-artifact@v4
127127
with:
128128
name: benchmark-results
129129
path: results

0 commit comments

Comments
 (0)