Skip to content

Commit 5d93d6f

Browse files
committedMar 8, 2025·
Merge branch 'master' into alpha
# Conflicts: # package-lock.json # package.json
2 parents 480506a + abd9271 commit 5d93d6f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
 

‎.github/actions/checkout-and-install-node/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
- uses: actions/setup-node@v2
1717
with:
1818
node-version-file: '.nvmrc'
19-
- uses: actions/cache@v2
19+
- uses: actions/cache@v4
2020
id: cache
2121
with:
2222
path: node_modules

‎.github/workflows/pr-checks.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@ jobs:
99
tests:
1010
runs-on: ubuntu-20.04
1111
steps:
12-
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@9fc72bb2948886090f84c9236580fbca480bdea7
12+
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@d6b5322d8dbc130126ec1fa00bc0f2d6cc2f53db
1313
- run: npm run test
1414
check-endpoints:
1515
runs-on: ubuntu-20.04
1616
# Currently, the check-endpoints script fails on the master branch.
1717
# So we need to continue on error.
1818
continue-on-error: true
1919
steps:
20-
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@9fc72bb2948886090f84c9236580fbca480bdea7
20+
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@d6b5322d8dbc130126ec1fa00bc0f2d6cc2f53db
2121
with:
2222
submodules: recursive
2323
- run: npm run check-endpoints
2424
lint:
2525
runs-on: ubuntu-20.04
2626
steps:
27-
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@9fc72bb2948886090f84c9236580fbca480bdea7
27+
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@d6b5322d8dbc130126ec1fa00bc0f2d6cc2f53db
2828
- run: npm run lint
2929
build:
3030
runs-on: ubuntu-20.04
3131
steps:
32-
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@9fc72bb2948886090f84c9236580fbca480bdea7
32+
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@d6b5322d8dbc130126ec1fa00bc0f2d6cc2f53db
3333
- run: npm run build

‎.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Release
1212
runs-on: ubuntu-20.04
1313
steps:
14-
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@9fc72bb2948886090f84c9236580fbca480bdea7
14+
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@d6b5322d8dbc130126ec1fa00bc0f2d6cc2f53db
1515
with:
1616
persist-credentials: false
1717
- env:

0 commit comments

Comments
 (0)
Please sign in to comment.