Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
sudo make gotest | tee test-results/junit/unittests.out
- name: Upload Unit Test Results
if: always()
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v3.1.2
with:
name: unittests-results
path: test-results/junit/unittests.xml
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
- name: Create Collector Binaries Archive
run: tar -cvf bin.tar ./bin
- name: Upload Collector Binaries
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v3.1.2
with:
name: collector-binaries
path: ./bin.tar
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
- name: Upload Test Results
if: ${{ failure() || success() }}
continue-on-error: true
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v3.1.2
with:
name: test-results
path: test_results.tar
Expand Down Expand Up @@ -388,7 +388,7 @@ jobs:
./internal/buildscripts/packaging/fpm/test.sh dist/otel-collector*x86_64.rpm
fi
- name: Upload Packages
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v3.1.2
with:
name: build-packages
path: ./dist
Expand Down Expand Up @@ -424,7 +424,7 @@ jobs:
- name: Validate MSI
run: .\internal\buildscripts\packaging\msi\make.ps1 Confirm-MSI
- name: Upload MSI
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v3.1.2
with:
name: msi-binaries
path: ./dist
Expand Down