From abcb1020739c6cd7b856a67ca0bb20b6e30c697b Mon Sep 17 00:00:00 2001 From: Eran Date: Fri, 9 Dec 2022 11:23:35 -0500 Subject: [PATCH 1/2] update actions cache and upload-artifact to v3 --- .github/workflows/buildDockerImage.yml | 2 +- .github/workflows/validateCommitSimulator.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/buildDockerImage.yml b/.github/workflows/buildDockerImage.yml index 5507eea..2004143 100644 --- a/.github/workflows/buildDockerImage.yml +++ b/.github/workflows/buildDockerImage.yml @@ -42,7 +42,7 @@ jobs: uses: docker/setup-buildx-action@v1 - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/validateCommitSimulator.yml b/.github/workflows/validateCommitSimulator.yml index 707690c..eac3389 100644 --- a/.github/workflows/validateCommitSimulator.yml +++ b/.github/workflows/validateCommitSimulator.yml @@ -30,7 +30,7 @@ jobs: python-version: '3.9' - name: Setup pip cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /opt/hostedtoolcache/Python key: ${{ runner.os }}-pip-${{ hashFiles('${GITHUB_WORKSPACE}/requirements.txt') }}-${{ hashFiles('${GITHUB_WORKSPACE}/requirements.optional.txt') }} @@ -169,7 +169,7 @@ jobs: uses: mxschmitt/action-tmate@v3 - name: Save test results - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: success() || failure() with: name: Validation test results From 3ab428b361ac4554f069e5046707cf287faf13ce Mon Sep 17 00:00:00 2001 From: Eran Date: Fri, 9 Dec 2022 11:26:07 -0500 Subject: [PATCH 2/2] update actions/setup-python action to v4 --- .github/workflows/validateCommitSimulator.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validateCommitSimulator.yml b/.github/workflows/validateCommitSimulator.yml index eac3389..77edd5b 100644 --- a/.github/workflows/validateCommitSimulator.yml +++ b/.github/workflows/validateCommitSimulator.yml @@ -25,7 +25,7 @@ jobs: ) steps: - name: Install Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: '3.9'