From 1971b4f17f6ba323fa0382a608ec8a7387fb6450 Mon Sep 17 00:00:00 2001 From: Evgeny <54681898+jimf5@users.noreply.github.com> Date: Tue, 26 Dec 2023 12:14:30 -0800 Subject: [PATCH] Bumps actions/download-artifact and actions/upload-artifact from 3 to 4. --- .github/workflows/nginx-otel-module-check.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nginx-otel-module-check.yml b/.github/workflows/nginx-otel-module-check.yml index 698f678..03fe48e 100644 --- a/.github/workflows/nginx-otel-module-check.yml +++ b/.github/workflows/nginx-otel-module-check.yml @@ -25,12 +25,12 @@ jobs: make -j 4 strip ngx_otel_module.so - name: Archive module - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nginx-otel-module path: build/ngx_otel_module.so - name: Archive protoc and opentelemetry-proto - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: protoc-opentelemetry-proto path: | @@ -43,12 +43,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - name: Download module - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: nginx-otel-module path: build - name: Download protoc and opentelemetry-proto - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: protoc-opentelemetry-proto path: build/_deps