Skip to content

Commit 8126540

Browse files
committed
Bumps node modules
1 parent 31f4b4f commit 8126540

6 files changed

Lines changed: 13 additions & 14 deletions

File tree

.github/workflows/create-release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
check-latest: true
4242
package-manager-cache: false
4343

44-
- uses: pnpm/action-setup@26f6d4f2c533a43e6b5da0b4a5dd983f98f7b49a # v6.0.4
44+
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
4545
with:
4646
run_install: |
4747
- recursive: true

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2828

29-
- uses: pnpm/action-setup@26f6d4f2c533a43e6b5da0b4a5dd983f98f7b49a # v6.0.4
29+
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
3030
name: Install pnpm
3131
with:
3232
run_install: |
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- name: Configure AWS Credentials
50-
uses: aws-actions/configure-aws-credentials@ec61189d14ec14c8efccab744f656cffd0e33f37 # v6.1.0
50+
uses: aws-actions/configure-aws-credentials@d979d5b3a71173a29b74b5b88418bfda9437d885 # v6.1.1
5151
with:
5252
role-to-assume: ${{ env.OIDC_IAM_ROLE_ARN }}
5353
role-session-name: GitHubActions
@@ -62,7 +62,7 @@ jobs:
6262
check-latest: true
6363
package-manager-cache: false
6464

65-
- uses: pnpm/action-setup@26f6d4f2c533a43e6b5da0b4a5dd983f98f7b49a # v6.0.4
65+
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
6666
name: Install pnpm
6767
with:
6868
run_install: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
echo "Updated npm version: $(npm -v)"
5959
6060
- name: Install pnpm
61-
uses: pnpm/action-setup@26f6d4f2c533a43e6b5da0b4a5dd983f98f7b49a # v6.0.4
61+
uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
6262
with:
6363
run_install: |
6464
- recursive: true

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@ jobs:
7575
# Upload the results to GitHub's code scanning dashboard (optional).
7676
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7777
- name: "Upload to code-scanning"
78-
uses: github/codeql-action/upload-sarif@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
78+
uses: github/codeql-action/upload-sarif@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
7979
with:
8080
sarif_file: results.sarif

pnpm-lock.yaml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

update.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ if [ $result -ne 0 ]; then
1414
fi
1515
echo ""
1616
pwd
17-
npx -y pnpm@latest self-update && pnpm install && pnpm up -r && pnpm audit --fix override && pnpm up -r && pnpm -r --if-present --parallel build && pnpm -r --if-present --parallel lint-fix && pnpm -r --if-present --parallel build && pnpm install -r --no-frozen-lockfile
18-
result=$?
19-
if [ $result -ne 0 ]; then
17+
18+
if ! (npx -y pnpm@latest self-update && pnpm install && pnpm up -r && pnpm audit --fix override && pnpm up -r && pnpm -r --if-present --parallel build && pnpm -r --if-present --parallel lint-fix && pnpm -r --if-present --parallel build && pnpm install -r --no-frozen-lockfile); then
2019
cd "${CUR}" || exit
21-
exit $result
20+
exit 1
2221
fi
2322
git commit -am "Bumps node modules" && git push
2423
result=$?

0 commit comments

Comments
 (0)