From b0a16430ea3a1f26d9e80fc96d69140219d174a3 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Sat, 8 Apr 2023 21:27:10 +0530 Subject: [PATCH 1/3] ci.yml: Bump actions version to v3 --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9eee484346..aa39961383 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,15 +36,15 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js 18.3.0 - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 18.3.0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules with: @@ -66,15 +66,15 @@ jobs: github.ref == 'refs/heads/develop' steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js 18.3.0 - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 18.3.0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules with: @@ -106,9 +106,9 @@ jobs: --health-timeout 5s --health-retries 5 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules with: @@ -144,9 +144,9 @@ jobs: --health-timeout 5s --health-retries 5 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules with: From 38ee4ab19a1c3c971a4c4d4c73550d624f6a0c85 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Sat, 8 Apr 2023 21:28:04 +0530 Subject: [PATCH 2/3] cypress.yml: bump actions version --- .github/workflows/cypress.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index ca0bdb0490..efeb303905 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.ref }} @@ -41,7 +41,7 @@ jobs: config-file: cypress-run.config.js - name: Capturing screenshots - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: always() with: name: screenshots From 33a3a199585b876127ce0fe1ca47b8b38152c830 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Sat, 8 Apr 2023 21:29:33 +0530 Subject: [PATCH 3/3] packer-build.yml: bump actions version --- .github/workflows/packer-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/packer-build.yml b/.github/workflows/packer-build.yml index 5504214a02..8996aec316 100644 --- a/.github/workflows/packer-build.yml +++ b/.github/workflows/packer-build.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setting tag if: "${{ github.event.inputs.version != '' }}" @@ -28,7 +28,7 @@ jobs: run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v2 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}