From 4eec3eddea562da4350e9c5f2efdce2d81c3bfa3 Mon Sep 17 00:00:00 2001 From: Akash Jain <15995028+akash-jain-10@users.noreply.github.com> Date: Tue, 4 Mar 2025 13:09:53 +0000 Subject: [PATCH] chore(CI): Upgrade all steps actions to latest release (#20065) --- .../setup-openmetadata-test-environment/action.yml | 6 +++--- .github/workflows/airflow-apis-tests-3_9.yml | 10 +++++----- .github/workflows/docs-tests.yml | 2 +- .github/workflows/java-checkstyle.yml | 6 +++--- .github/workflows/maven-build-collate.yml | 2 +- .github/workflows/maven-build.yml | 8 ++++---- .github/workflows/maven-postgres-tests-build.yml | 8 ++++---- .github/workflows/maven-sonar-build.yml | 8 ++++---- .github/workflows/monitor-slack-link.yml | 4 ++-- .github/workflows/phylum.yml | 2 +- .../workflows/playwright-integration-tests-mysql.yml | 8 ++++---- .../playwright-integration-tests-postgres.yml | 8 ++++---- .github/workflows/playwright-mysql-e2e.yml | 4 ++-- .github/workflows/playwright-postgresql-e2e.yml | 4 ++-- .github/workflows/publish-maven-package.yml | 4 ++-- .github/workflows/py-checkstyle.yml | 6 +++--- .github/workflows/py-cli-e2e-tests.yml | 6 +++--- .github/workflows/py-operator-build-test.yml | 2 +- .github/workflows/py-tests-postgres.yml | 4 ++-- .github/workflows/py-tests.yml | 2 +- .github/workflows/python-packages-publish.yml | 4 ++-- .github/workflows/security-scan.yml | 6 +++--- .github/workflows/selenium-noIngestion-tests.yml | 4 ++-- .github/workflows/sync-docs-v1.yml | 2 +- .../workflows/trivy-scan-ingestion-base-slim-image.yml | 2 +- .github/workflows/trivy-scan-ingestion-image.yml | 2 +- .github/workflows/trivy-scan-openmetadta-server.yml | 2 +- .github/workflows/validate-jsons-yamls.yml | 6 +++--- .github/workflows/yarn-coverage.yml | 8 ++++---- 29 files changed, 70 insertions(+), 70 deletions(-) diff --git a/.github/actions/setup-openmetadata-test-environment/action.yml b/.github/actions/setup-openmetadata-test-environment/action.yml index 272608c4582..f484ff5a158 100644 --- a/.github/actions/setup-openmetadata-test-environment/action.yml +++ b/.github/actions/setup-openmetadata-test-environment/action.yml @@ -27,7 +27,7 @@ runs: # ---- Setup Java -------------------------------------------------------------- - name: Setup JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' @@ -35,7 +35,7 @@ runs: # ---- Setup Python Test Environment ------------------------------------------- - name: Setup Python ${{ inputs.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ inputs.python-version }} @@ -56,7 +56,7 @@ runs: # ---- Start OpenMetadata Server and ingest Sample Data ------------------------ - name: Start Server and Ingest Sample Data - uses: nick-fields/retry@v2.8.3 + uses: nick-fields/retry@v3.0.2 env: INGESTION_DEPENDENCY: ${{ inputs.ingestion_dependency }} with: diff --git a/.github/workflows/airflow-apis-tests-3_9.yml b/.github/workflows/airflow-apis-tests-3_9.yml index 8438f11b9b0..529d2f26246 100644 --- a/.github/workflows/airflow-apis-tests-3_9.yml +++ b/.github/workflows/airflow-apis-tests-3_9.yml @@ -44,7 +44,7 @@ jobs: docker-images: false swap-storage: true - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -62,19 +62,19 @@ jobs: disable-reviews: true # To not auto approve changes - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.9 @@ -98,7 +98,7 @@ jobs: make install_all install_test - name: Start Server and Ingest Sample Data - uses: nick-fields/retry@v2.8.3 + uses: nick-fields/retry@v3.0.2 env: INGESTION_DEPENDENCY: "mysql,elasticsearch,sample-data" with: diff --git a/.github/workflows/docs-tests.yml b/.github/workflows/docs-tests.yml index e3fa2670701..27655ea75eb 100644 --- a/.github/workflows/docs-tests.yml +++ b/.github/workflows/docs-tests.yml @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run Docs export run: make docker-docs-validate diff --git a/.github/workflows/java-checkstyle.yml b/.github/workflows/java-checkstyle.yml index 01b946bc06d..da6d753414f 100644 --- a/.github/workflows/java-checkstyle.yml +++ b/.github/workflows/java-checkstyle.yml @@ -45,7 +45,7 @@ jobs: swap-storage: true docker-images: false - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -63,12 +63,12 @@ jobs: disable-reviews: true # To not auto approve changes - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' diff --git a/.github/workflows/maven-build-collate.yml b/.github/workflows/maven-build-collate.yml index 188f90b7bb1..862a87e222b 100644 --- a/.github/workflows/maven-build-collate.yml +++ b/.github/workflows/maven-build-collate.yml @@ -46,7 +46,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml index 993df1a96c1..6385302476c 100644 --- a/.github/workflows/maven-build.yml +++ b/.github/workflows/maven-build.yml @@ -53,7 +53,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -71,13 +71,13 @@ jobs: disable-reviews: true # To not auto approve changes - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} - name: Cache Maven dependencies id: cache-output - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -86,7 +86,7 @@ jobs: - name: Set up JDK 17 if: steps.cache-output.outputs.exit-code == 0 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' diff --git a/.github/workflows/maven-postgres-tests-build.yml b/.github/workflows/maven-postgres-tests-build.yml index 3bc514da5ba..7fc4ad5f025 100644 --- a/.github/workflows/maven-postgres-tests-build.yml +++ b/.github/workflows/maven-postgres-tests-build.yml @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -70,13 +70,13 @@ jobs: disable-reviews: true # To not auto approve changes - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} - name: Cache Maven dependencies id: cache-output - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -85,7 +85,7 @@ jobs: - name: Set up JDK 17 if: steps.cache-output.outputs.exit-code == 0 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' diff --git a/.github/workflows/maven-sonar-build.yml b/.github/workflows/maven-sonar-build.yml index 5e5a03e8615..b32e65ee1a1 100644 --- a/.github/workflows/maven-sonar-build.yml +++ b/.github/workflows/maven-sonar-build.yml @@ -53,7 +53,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -71,13 +71,13 @@ jobs: disable-reviews: true # To not auto approve changes - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} - name: Cache Maven dependencies id: cache-output - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -86,7 +86,7 @@ jobs: - name: Set up JDK 17 if: steps.cache-output.outputs.exit-code == 0 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' diff --git a/.github/workflows/monitor-slack-link.yml b/.github/workflows/monitor-slack-link.yml index e156b8c2dc8..f065ef9341b 100644 --- a/.github/workflows/monitor-slack-link.yml +++ b/.github/workflows/monitor-slack-link.yml @@ -35,10 +35,10 @@ jobs: docker-images: true swap-storage: true - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.9 diff --git a/.github/workflows/phylum.yml b/.github/workflows/phylum.yml index be51494ca9c..832c77dfa84 100644 --- a/.github/workflows/phylum.yml +++ b/.github/workflows/phylum.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/playwright-integration-tests-mysql.yml b/.github/workflows/playwright-integration-tests-mysql.yml index 4812b197229..98c37531589 100644 --- a/.github/workflows/playwright-integration-tests-mysql.yml +++ b/.github/workflows/playwright-integration-tests-mysql.yml @@ -46,7 +46,7 @@ jobs: swap-storage: true docker-images: false - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -62,12 +62,12 @@ jobs: pull-request-number: '${{ github.event.pull_request.number }}' disable-reviews: true # To not auto approve changes - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} - name: Cache Maven Dependencies id: cache-output - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -77,7 +77,7 @@ jobs: if: steps.cache-output.outputs.exit-code == 0 id: yarn-cache-dir-path run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: steps.yarn-cache-dir-path.outputs.exit-code == 0 id: yarn-cache with: diff --git a/.github/workflows/playwright-integration-tests-postgres.yml b/.github/workflows/playwright-integration-tests-postgres.yml index 451db2f3f6b..c0eec0f766c 100644 --- a/.github/workflows/playwright-integration-tests-postgres.yml +++ b/.github/workflows/playwright-integration-tests-postgres.yml @@ -46,7 +46,7 @@ jobs: swap-storage: true docker-images: false - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -62,12 +62,12 @@ jobs: pull-request-number: '${{ github.event.pull_request.number }}' disable-reviews: true # To not auto approve changes - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} - name: Cache Maven Dependencies id: cache-output - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -77,7 +77,7 @@ jobs: if: steps.cache-output.outputs.exit-code == 0 id: yarn-cache-dir-path run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: steps.yarn-cache-dir-path.outputs.exit-code == 0 id: yarn-cache with: diff --git a/.github/workflows/playwright-mysql-e2e.yml b/.github/workflows/playwright-mysql-e2e.yml index e63578a1a01..c54ced37bce 100644 --- a/.github/workflows/playwright-mysql-e2e.yml +++ b/.github/workflows/playwright-mysql-e2e.yml @@ -58,7 +58,7 @@ jobs: swap-storage: true docker-images: false - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -82,7 +82,7 @@ jobs: - name: Cache Maven Dependencies id: cache-output - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/playwright-postgresql-e2e.yml b/.github/workflows/playwright-postgresql-e2e.yml index 6ee52da523b..416636bfc35 100644 --- a/.github/workflows/playwright-postgresql-e2e.yml +++ b/.github/workflows/playwright-postgresql-e2e.yml @@ -57,7 +57,7 @@ jobs: swap-storage: true docker-images: false - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -81,7 +81,7 @@ jobs: - name: Cache Maven Dependencies id: cache-output - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/publish-maven-package.yml b/.github/workflows/publish-maven-package.yml index 368f07132fa..7e652a86ced 100644 --- a/.github/workflows/publish-maven-package.yml +++ b/.github/workflows/publish-maven-package.yml @@ -41,10 +41,10 @@ jobs: haskell: true large-packages: false swap-storage: true - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: 17 distribution: 'temurin' diff --git a/.github/workflows/py-checkstyle.yml b/.github/workflows/py-checkstyle.yml index 79e1ce639b4..b34773f6727 100644 --- a/.github/workflows/py-checkstyle.yml +++ b/.github/workflows/py-checkstyle.yml @@ -33,7 +33,7 @@ jobs: steps: - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -51,12 +51,12 @@ jobs: disable-reviews: true # To not auto approve changes - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.9 diff --git a/.github/workflows/py-cli-e2e-tests.yml b/.github/workflows/py-cli-e2e-tests.yml index 138f4095e06..1d8e973f0e8 100644 --- a/.github/workflows/py-cli-e2e-tests.yml +++ b/.github/workflows/py-cli-e2e-tests.yml @@ -61,7 +61,7 @@ jobs: docker-images: false - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: configure aws credentials if: contains('quicksight', matrix.e2e-test) || contains('datalake_s3', matrix.e2e-test) || contains('athena', matrix.e2e-test) @@ -215,10 +215,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.9 diff --git a/.github/workflows/py-operator-build-test.yml b/.github/workflows/py-operator-build-test.yml index aaf0a4e4fe2..dd6339b2e3a 100644 --- a/.github/workflows/py-operator-build-test.yml +++ b/.github/workflows/py-operator-build-test.yml @@ -70,7 +70,7 @@ jobs: disable-reviews: true # To not auto approve changes - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 diff --git a/.github/workflows/py-tests-postgres.yml b/.github/workflows/py-tests-postgres.yml index c8caeacd0b1..9e8bcff055f 100644 --- a/.github/workflows/py-tests-postgres.yml +++ b/.github/workflows/py-tests-postgres.yml @@ -52,7 +52,7 @@ jobs: docker-images: false - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -70,7 +70,7 @@ jobs: disable-reviews: true # To not auto approve changes - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 diff --git a/.github/workflows/py-tests.yml b/.github/workflows/py-tests.yml index 7ca4a5f620d..ced4bfdd439 100644 --- a/.github/workflows/py-tests.yml +++ b/.github/workflows/py-tests.yml @@ -73,7 +73,7 @@ jobs: disable-reviews: true # To not auto approve changes - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 diff --git a/.github/workflows/python-packages-publish.yml b/.github/workflows/python-packages-publish.yml index df883394e06..3c93e5389f5 100644 --- a/.github/workflows/python-packages-publish.yml +++ b/.github/workflows/python-packages-publish.yml @@ -19,9 +19,9 @@ jobs: runs-on: ubuntu-latest environment: release steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.9 - name: Install Ubuntu related dependencies diff --git a/.github/workflows/security-scan.yml b/.github/workflows/security-scan.yml index 577442226bb..dfe6fc1e3c4 100644 --- a/.github/workflows/security-scan.yml +++ b/.github/workflows/security-scan.yml @@ -34,15 +34,15 @@ jobs: large-packages: false docker-images: true swap-storage: true - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.9 - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' diff --git a/.github/workflows/selenium-noIngestion-tests.yml b/.github/workflows/selenium-noIngestion-tests.yml index 309222bf470..da3f74cb1ab 100644 --- a/.github/workflows/selenium-noIngestion-tests.yml +++ b/.github/workflows/selenium-noIngestion-tests.yml @@ -52,9 +52,9 @@ jobs: large-packages: false docker-images: true swap-storage: true - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' diff --git a/.github/workflows/sync-docs-v1.yml b/.github/workflows/sync-docs-v1.yml index 8f3acc386fa..88345a0aae4 100644 --- a/.github/workflows/sync-docs-v1.yml +++ b/.github/workflows/sync-docs-v1.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Push content id: push_content diff --git a/.github/workflows/trivy-scan-ingestion-base-slim-image.yml b/.github/workflows/trivy-scan-ingestion-base-slim-image.yml index c40b61dc771..eef4453216c 100644 --- a/.github/workflows/trivy-scan-ingestion-base-slim-image.yml +++ b/.github/workflows/trivy-scan-ingestion-base-slim-image.yml @@ -18,7 +18,7 @@ jobs: pull-requests: write steps: - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/trivy-scan-ingestion-image.yml b/.github/workflows/trivy-scan-ingestion-image.yml index db3647a9853..53a412b9e6b 100644 --- a/.github/workflows/trivy-scan-ingestion-image.yml +++ b/.github/workflows/trivy-scan-ingestion-image.yml @@ -18,7 +18,7 @@ jobs: pull-requests: write steps: - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/trivy-scan-openmetadta-server.yml b/.github/workflows/trivy-scan-openmetadta-server.yml index 4f4af72e98e..718dba99989 100644 --- a/.github/workflows/trivy-scan-openmetadta-server.yml +++ b/.github/workflows/trivy-scan-openmetadta-server.yml @@ -15,7 +15,7 @@ jobs: pull-requests: write steps: - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/validate-jsons-yamls.yml b/.github/workflows/validate-jsons-yamls.yml index 1ad75ec2adb..04d22fc282f 100644 --- a/.github/workflows/validate-jsons-yamls.yml +++ b/.github/workflows/validate-jsons-yamls.yml @@ -31,7 +31,7 @@ jobs: pull-requests: write steps: - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -49,12 +49,12 @@ jobs: disable-reviews: true # To not auto approve changes - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.9 diff --git a/.github/workflows/yarn-coverage.yml b/.github/workflows/yarn-coverage.yml index bfb78a83634..90543a714ab 100644 --- a/.github/workflows/yarn-coverage.yml +++ b/.github/workflows/yarn-coverage.yml @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Wait for the labeler - uses: lewagon/wait-on-check-action@v1.3.3 + uses: lewagon/wait-on-check-action@v1.3.4 if: ${{ github.event_name == 'pull_request_target' }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -49,7 +49,7 @@ jobs: pull-request-number: "${{ github.event.pull_request.number }}" disable-reviews: true # To not auto approve changes - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} # Disabling shallow clone is recommended for improving relevancy of reporting @@ -60,7 +60,7 @@ jobs: run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Caching NPM dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -74,7 +74,7 @@ jobs: run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT} - name: Caching NPM dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 id: npm-cache with: path: ${{ steps.npm-cache-dir.outputs.dir }}