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