Skip to content

Commit

Permalink
Fixed Auto Tag workflow for newer JQ version
Browse files Browse the repository at this point in the history
  • Loading branch information
ibexa-yuna authored Jan 23, 2025
1 parent 1804822 commit 450dded
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/auto_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

jobs:
preparation:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
# This should allow parallel runs in a chain, e.g. OSS->Content->Experience->Commerce
# whilst allowing Satis to process
timeout-minutes: 30
Expand Down Expand Up @@ -153,12 +153,12 @@ jobs:
# if they exist, to update the values of the keys in the require object.
- name: Patch composer require versions
run: |
jq --argfile release release.json '
jq --slurpfile release <(cat release.json) '
.require |= (
to_entries |
map({
key: .key,
value: (if ($release[.key]) then $release[.key] else .value end)
value: (if ($release[0][.key]) then $release[0][.key] else .value end)
}) | from_entries
)
' composer.json > composer.tmp
Expand Down

0 comments on commit 450dded

Please sign in to comment.