From 3e3d4d7be9a3bde7f1b9f162640d855c0949e156 Mon Sep 17 00:00:00 2001 From: Ian Liu Date: Thu, 12 Oct 2023 14:51:49 -0700 Subject: [PATCH] Update actions/upload-artifact action to v3 as v2 is deprecated. --- .github/workflows/ci_auth_artifact.yml | 2 +- .github/workflows/reusable_terraform_server.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_auth_artifact.yml b/.github/workflows/ci_auth_artifact.yml index e69565831..67584bdd0 100644 --- a/.github/workflows/ci_auth_artifact.yml +++ b/.github/workflows/ci_auth_artifact.yml @@ -28,7 +28,7 @@ jobs: rm -rf auth_function_packaging - name: Auth function upload zip file artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: fam-auth-function-zip path: ./infrastructure/server/fam_auth_function.zip diff --git a/.github/workflows/reusable_terraform_server.yml b/.github/workflows/reusable_terraform_server.yml index 7110ab21e..5f4dc1a6a 100644 --- a/.github/workflows/reusable_terraform_server.yml +++ b/.github/workflows/reusable_terraform_server.yml @@ -76,7 +76,7 @@ jobs: rm -rf auth_function_packaging - name: Auth function upload zip file artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: fam-auth-function path: ./infrastructure/server/fam_auth_function.zip @@ -99,7 +99,7 @@ jobs: cd .. - name: Upload zip file artifact - FAM API - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: fam-ui-api path: ./infrastructure/server/fam-ui-api.zip