Skip to content

Commit 07d9dc2

Browse files
committed
Update monorepo-split-packages.yml
1 parent dbb7dfe commit 07d9dc2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/monorepo-split-packages.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
env:
99
GITHUB_TOKEN: ${{ secrets.BOT }}
10-
CORE_VERSION: "^3.0.3"
10+
CORE_VERSION: "^3.1.1"
1111

1212
jobs:
1313
packages_split:
@@ -79,17 +79,18 @@ jobs:
7979
- user-session
8080
- website
8181
- wishlist
82+
8283

8384
steps:
8485
- uses: actions/checkout@v4
8586

86-
# Search and replace "moox/core": "*" with "moox/core": "^3.0.3" in composer.json
87+
# Search and replace "moox/core": "*" with "moox/core": "^3.1.1" in composer.json
8788
- name: Replace core version in composer.json
8889
working-directory: packages/${{ matrix.package }}
8990
run: |
9091
if [ -f composer.json ]; then
9192
echo "Updating moox/core version in ${{ matrix.package }}"
92-
sed -i 's/"moox\/core": "\*"/"moox\/core": "^3.0.3"/g' composer.json
93+
sed -i 's/"moox\/core": "\*"/"moox\/core": "^3.1.1"/g' composer.json
9394
fi
9495
9596
# Commit the updated composer.json (if there was a change)
@@ -100,7 +101,7 @@ jobs:
100101
git config --global user.name "mooxbot"
101102
git config --global user.email "bot@moox.org"
102103
git add composer.json
103-
git commit -m "Update moox/core dependency to ^^3.0.3" || echo "No changes to commit"
104+
git commit -m "Update moox/core dependency to ^3.1.1" || echo "No changes to commit"
104105
fi
105106
106107
- if: ${{ !startsWith(github.ref, 'refs/tags/') }}

0 commit comments

Comments
 (0)