Update upload artifact action to version 3

We were getting a warning with version 2:

The following actions uses node12 which is deprecated and will be forced
to run on node16: actions/upload-artifact@v2. For more info:
https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
This commit is contained in:
Javi Martín
2024-03-01 23:08:48 +01:00
parent e9af16f266
commit e07650e09b

View File

@@ -69,7 +69,7 @@ jobs:
parallel: true parallel: true
- name: Upload screenshots - name: Upload screenshots
if: failure() if: failure()
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v3
with: with:
name: screenshots name: screenshots
path: tmp/screenshots path: tmp/screenshots