Skip to content

Commit 9681350

Browse files
committed
Merge pull request 'chore: fix licenses action' from chore/licenses into develop
Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/onlyoffice-discourse/pulls/4
2 parents 16cc905 + eaf54a8 commit 9681350

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/licenses.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,18 @@ jobs:
1313
steps:
1414
- name: Checkout Repository
1515
uses: actions/checkout@v4
16-
- name: Set up Node.js
17-
uses: actions/setup-node@v6
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v4
1818
with:
19-
node-version: 16
20-
cache: yarn
21-
- name: Yarn install
22-
run: yarn install
19+
node-version: 22
20+
- name: Setup pnpm
21+
uses: pnpm/action-setup@v4
22+
- name: Install JS dependencies
23+
run: pnpm install --frozen-lockfile
2324
- name: Set up ruby
2425
uses: ruby/setup-ruby@v1
2526
with:
26-
ruby-version: 2.7
27+
ruby-version: '3.3'
2728
bundler-cache: true
2829
- name: Bundle Install
2930
run: bundle install

0 commit comments

Comments
 (0)