From 3da355651104ec2f9855b139cc2b1bb82d9c38b7 Mon Sep 17 00:00:00 2001 From: Bhavin Patel Date: Mon, 8 Jul 2024 17:46:44 -0700 Subject: [PATCH] testing one more time --- .github/workflows/unit-testing.yml | 4 ++-- .github/workflows/validate-and-build.yml | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unit-testing.yml b/.github/workflows/unit-testing.yml index 4219a794c6..0a8ec17481 100644 --- a/.github/workflows/unit-testing.yml +++ b/.github/workflows/unit-testing.yml @@ -3,7 +3,7 @@ on: pull_request: types: [opened, reopened, synchronize] jobs: - contentctl-unit-testing: + unit-testing: runs-on: ubuntu-latest if: "!contains(github.ref, 'refs/tags/')" #don't run on tags - future steps won't run either since they depend on this job # needs: [validate-tag-if-present, quit-for-dependabot] @@ -36,7 +36,7 @@ jobs: continue-on-error: true - name: store_artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test_summary_results path: | diff --git a/.github/workflows/validate-and-build.yml b/.github/workflows/validate-and-build.yml index b405b86093..2ec11cab6a 100644 --- a/.github/workflows/validate-and-build.yml +++ b/.github/workflows/validate-and-build.yml @@ -1,8 +1,7 @@ name: validate-and-build on: - push: pull_request: - types: [opened, reopened] + types: [opened, reopened, synchronize] jobs: validate-and-build: #Note that the CircleCI job used a Container. The way to do this with Github Actions