Skip to content

Commit

Permalink
[ workflow ] Allow any newer PATCH version for `cancel-workflow-actio…
Browse files Browse the repository at this point in the history
…n` (#7074)
  • Loading branch information
L-TChen committed Jan 30, 2024
1 parent 1af10a3 commit 04b9cd1
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cabal-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
&& !contains(github.event.head_commit.message, '[skip github]')
runs-on: ubuntu-latest
steps:
- uses: styfle/cancel-workflow-action@0.12.0
- uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
cabal-install:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cabal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
&& !contains(github.event.head_commit.message, '[skip github]')
runs-on: Ubuntu-latest
steps:
- uses: styfle/cancel-workflow-action@0.12.0
- uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
cabal:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
== 'success' }}
runs-on: Ubuntu-latest
steps:
- uses: styfle/cancel-workflow-action@0.12.0
- uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stack-dry-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
&& !contains(github.event.head_commit.message, '[skip github]')
runs-on: Ubuntu-latest
steps:
- uses: styfle/cancel-workflow-action@0.12.0
- uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
stack:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
&& !contains(github.event.head_commit.message, '[skip github]')
runs-on: Ubuntu-latest
steps:
- uses: styfle/cancel-workflow-action@0.12.0
- uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
stack:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
echo "github.ref_name = ${{ github.ref_name }}"
echo "github.ref_type = ${{ github.ref_type }}"
- if: github.ref != 'refs/heads/master'
uses: styfle/cancel-workflow-action@0.12.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion src/github/workflows/cabal-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest # Required, but it can be anything here.

steps:
- uses: styfle/cancel-workflow-action@0.12.0
- uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}

Expand Down
2 changes: 1 addition & 1 deletion src/github/workflows/cabal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: Ubuntu-latest # Required, but it can be anything here.

steps:
- uses: styfle/cancel-workflow-action@0.12.0
- uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}

Expand Down
2 changes: 1 addition & 1 deletion src/github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
runs-on: Ubuntu-latest
steps:
- uses: styfle/cancel-workflow-action@0.12.0
- uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}

Expand Down
2 changes: 1 addition & 1 deletion src/github/workflows/stack-dry-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: Ubuntu-latest # Required, but it can be anything here.

steps:
- uses: styfle/cancel-workflow-action@0.12.0
- uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
stack:
Expand Down
2 changes: 1 addition & 1 deletion src/github/workflows/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: Ubuntu-latest # Required, but it can be anything here.

steps:
- uses: styfle/cancel-workflow-action@0.12.0
- uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
stack:
Expand Down
2 changes: 1 addition & 1 deletion src/github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
echo "github.ref_name = ${{ github.ref_name }}"
echo "github.ref_type = ${{ github.ref_type }}"
- uses: styfle/cancel-workflow-action@0.12.0
- uses: styfle/cancel-workflow-action@0.12.1
# Andreas, 2022-12-05, issue #6388: do not cancel on `master`!
if: github.ref != 'refs/heads/master'
with:
Expand Down

0 comments on commit 04b9cd1

Please sign in to comment.