From 38e11ad1104dcc1e63b52691ddf2fe4015d06955 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Fri, 4 Mar 2022 18:48:06 -0500 Subject: [PATCH] chore(deps): update actions/download-artifact action to v3 (#1366) chore(deps): update actions/upload-artifact action to v3 --- .../templates/python_library/.github/workflows/unittest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synthtool/gcp/templates/python_library/.github/workflows/unittest.yml b/synthtool/gcp/templates/python_library/.github/workflows/unittest.yml index 2907e0955..46544f20f 100644 --- a/synthtool/gcp/templates/python_library/.github/workflows/unittest.yml +++ b/synthtool/gcp/templates/python_library/.github/workflows/unittest.yml @@ -26,7 +26,7 @@ jobs: run: | nox -s unit-${{ '{{' }} matrix.python {{ '}}' }} - name: Upload coverage results - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage-artifacts path: .coverage-${{ '{{' }} matrix.python {{ '}}' }} @@ -47,7 +47,7 @@ jobs: python -m pip install --upgrade setuptools pip wheel python -m pip install coverage - name: Download coverage results - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: coverage-artifacts path: .coverage-results/