diff --git a/projects/rocprofiler-compute/.github/workflows/rhel-8.yml b/projects/rocprofiler-compute/.github/workflows/rhel-8.yml index c2d7a4c1ea..868e0851ca 100644 --- a/projects/rocprofiler-compute/.github/workflows/rhel-8.yml +++ b/projects/rocprofiler-compute/.github/workflows/rhel-8.yml @@ -12,6 +12,10 @@ on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: build: @@ -21,9 +25,6 @@ jobs: image: colramos/target-images:rhel8 # Steps represent a sequence of tasks that will be executed as part of the job steps: - # Cancel any previous runs - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.11.0 - name: Install baseline OS dependencies run: | yum -y update @@ -32,7 +33,7 @@ jobs: yum -y install cmake3 yum -y install which - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Python prereqs run: | python3.9 -m pip install -r requirements.txt