Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/upload-artifact from 2.2.4 to 3.1.2 #1220

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/container_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,19 @@ jobs:
echo "--- Chrome ---"
docker logs chrome.catroweb

- uses: actions/upload-artifact@v2.2.4
- uses: actions/upload-artifact@v3.1.2
if: failure()
with:
name: screenshots_dev_container
path: tests/testreports/screens

- uses: actions/upload-artifact@v2.2.4
- uses: actions/upload-artifact@v3.1.2
if: failure()
with:
name: dev_logs_dev_container
path: var/log/dev

- uses: actions/upload-artifact@v2.2.4
- uses: actions/upload-artifact@v3.1.2
if: failure()
with:
name: test_logs_dev_container
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
docker save app.catroweb > catroweb-image.tar

- name: Upload app.catroweb image
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v3.1.2
with:
name: catroweb-image
path: docker/catroweb-image.tar
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
docker exec app.catroweb bin/phpunit --coverage-html tests/testreports/coverage/phpunit --coverage-clover=tests/testreports/coverage/phpunit/coverage.xml

- name: Upload code coverage report
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v3.1.2
if: always()
with:
name: PhpUnitTestReport
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
echo "--- Chrome ---"
docker logs chrome.catroweb

- uses: actions/upload-artifact@v2.2.4
- uses: actions/upload-artifact@v3.1.2
if: failure()
with:
name: screenshots_${{ matrix.testSuite }}
Expand Down