Skip to content

Commit f788756

Browse files
committed
chore: configure dependency updater versions
1 parent 5fb7919 commit f788756

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/auto-dependency-updater.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: Auto dependency updater
22

33
env:
44
issue: 6350
5-
version: v2
65

76
on:
87
schedule:
@@ -14,7 +13,13 @@ jobs:
1413
runs-on: ubuntu-latest
1514
strategy:
1615
matrix:
17-
base: [main, release/2]
16+
include:
17+
- base: develop
18+
version: v3
19+
- base: release/2
20+
version: v2
21+
env:
22+
version: ${{ matrix.version }}
1823
steps:
1924
- uses: actions/checkout@v5
2025
with:
@@ -53,7 +58,7 @@ jobs:
5358
${{ runner.os }}-pnpm-store
5459
5560
- name: Create update branch
56-
run: git checkout -b ${{env.issue}}-${{env.version}}/auto-update-deps-${{ matrix.base }}
61+
run: git checkout -b ${{ env.issue }}-${{ env.version }}/auto-update-deps-${{ matrix.base }}
5762
- name: Install
5863
run: pnpm i --no-frozen-lockfile
5964
- name: Update dependencies

0 commit comments

Comments
 (0)