Skip to content

Commit 0cda33d

Browse files
committed
Update CI workflow: replace deprecated =~ operator with matches for branch pattern condition
1 parent 6bd5143 commit 0cda33d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
infection:
221221
name: "🧬 Mutation Testing"
222222
needs: [prepare_dependencies, tests]
223-
if: ${{ github.ref_name =~ '^[0-9]+\.[0-9]+\.x$' }}
223+
if: ${{ github.ref_name matches '^[0-9]+\.[0-9]+\.x$' }}
224224
runs-on: ubuntu-latest
225225
container:
226226
image: ghcr.io/spomky-labs/phpqa:8.4

0 commit comments

Comments
 (0)