From 10d047752f15753b534c121592f7e1f087817c5f Mon Sep 17 00:00:00 2001 From: Lee Jeong Ron <83465749+JeongRon@users.noreply.github.com> Date: Thu, 26 Dec 2024 17:58:17 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20github=20Ations=20=EC=84=A4=EC=A0=95=20?= =?UTF-8?q?=EC=97=85=EA=B7=B8=EB=A0=88=EC=9D=B4=EB=93=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main-deploy.yml | 6 +++--- .github/workflows/test-deploy.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main-deploy.yml b/.github/workflows/main-deploy.yml index 2c2d2b09f..746258b2e 100644 --- a/.github/workflows/main-deploy.yml +++ b/.github/workflows/main-deploy.yml @@ -10,10 +10,10 @@ jobs: runs-on: macos-13 steps: - name: Git Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Use Node.js version 16.x - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.x @@ -30,7 +30,7 @@ jobs: npm install npm run build - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v3 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml index 9a0906879..e0814e98a 100644 --- a/.github/workflows/test-deploy.yml +++ b/.github/workflows/test-deploy.yml @@ -12,10 +12,10 @@ jobs: runs-on: macos-13 steps: - name: Git Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Use Node.js version 16.x - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.x @@ -31,7 +31,7 @@ jobs: npm install npm run build - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v3 with: aws-access-key-id: ${{ secrets.AWS_DEV_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_DEV_SECRET_ACCESS_KEY }}