Skip to content

Commit 49a98cc

Browse files
Pin dependencies
1 parent 0a680c0 commit 49a98cc

File tree

10 files changed

+105
-122
lines changed

10 files changed

+105
-122
lines changed

.github/workflows/check.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
1111
steps:
1212
- name: Checkout Commit
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1414
with:
1515
fetch-depth: 2
1616

1717
- name: Setup Node.js
18-
uses: actions/setup-node@v4
18+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
1919
with:
2020
node-version: '22.x'
2121

@@ -31,7 +31,7 @@ jobs:
3131
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
3232
3333
- name: Cache pnpm dependencies
34-
uses: actions/cache@v4
34+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
3535
id: pnpm-cache-result
3636
with:
3737
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}

.github/workflows/release.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
tag_name: ${{ steps.release-drafter.outputs.tag_name }}
1919
steps:
2020
# Get next version
21-
- uses: release-drafter/release-drafter@v5
21+
- uses: release-drafter/release-drafter@09c613e259eb8d4e7c81c2cb00618eb5fc4575a7 # v5
2222
id: release-drafter
2323
with:
2424
config-name: release-drafter-git-green-cli.yml
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
# Extract SemVers from tag ([email protected] -> 1 0 0)
3636
- name: Create SemVer outputs
37-
uses: actions/github-script@v7
37+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
3838
id: semver
3939
with:
4040
script: |
@@ -47,19 +47,19 @@ jobs:
4747
}
4848
4949
# Use GitHub App for bypassing ruleset guard
50-
- uses: actions/create-github-app-token@v1
50+
- uses: actions/create-github-app-token@21cfef2b496dd8ef5b904c159339626a10ad380e # v1
5151
id: app-token
5252
with:
5353
app-id: ${{ secrets.PUSH_BYPASS_APP_ID }}
5454
private-key: ${{ secrets.PUSH_BYPASS_APP_PRIVATE_KEY }}
5555

56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
5757
with:
5858
ref: main
5959
token: ${{ steps.app-token.outputs.token }}
6060

6161
- name: Setup Node.js
62-
uses: actions/setup-node@v4
62+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
6363
with:
6464
node-version: '22.x'
6565

@@ -80,7 +80,7 @@ jobs:
8080
git config user.email [email protected]
8181
8282
# Publish packages to npm registry and push updated package.json and package-lock.json
83-
- uses: actions/setup-node@v4
83+
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
8484
with:
8585
node-version: '21.x'
8686
registry-url: 'https://registry.npmjs.org'
@@ -94,7 +94,7 @@ jobs:
9494
env:
9595
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
9696
97-
- uses: release-drafter/release-drafter@v5
97+
- uses: release-drafter/release-drafter@09c613e259eb8d4e7c81c2cb00618eb5fc4575a7 # v5
9898
with:
9999
config-name: release-drafter-git-green-cli.yml
100100
publish: true

.github/workflows/storybook.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
1212
steps:
1313
- name: Checkout Commit
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1515
with:
1616
fetch-depth: 2
1717

1818
- name: Setup Node.js
19-
uses: actions/setup-node@v4
19+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
2020
with:
2121
node-version: '22.x'
2222

@@ -32,7 +32,7 @@ jobs:
3232
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
3333
3434
- name: Cache pnpm dependencies
35-
uses: actions/cache@v4
35+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
3636
id: pnpm-cache-result
3737
with:
3838
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
@@ -46,7 +46,7 @@ jobs:
4646
run: pnpm run build:storybook
4747

4848
- name: Deploy
49-
uses: peaceiris/actions-gh-pages@v3
49+
uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 # v3
5050
with:
5151
github_token: ${{ secrets.GITHUB_TOKEN }}
5252
publish_dir: ./packages/ui/storybook-static

apps/git-kusa/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
"@graphql-codegen/cli": "5.0.2",
3636
"@graphql-codegen/client-preset": "4.2.6",
3737
"@remix-run/dev": "2.9.2",
38-
"@types/dom-to-image": "^2.6.7",
38+
"@types/dom-to-image": "2.6.7",
3939
"git-green-cli": "^1.0.0",
4040
"tailwindcss": "catalog:",
41-
"vite-tsconfig-paths": "^4.2.1"
41+
"vite-tsconfig-paths": "4.3.2"
4242
}
4343
}

apps/sakupi01.com/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"sharp": "catalog:"
1616
},
1717
"devDependencies": {
18-
"@types/jsdom": "^21.1.7"
18+
"@types/jsdom": "21.1.7"
1919
}
2020
}

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@
3434
},
3535
"devDependencies": {
3636
"@biomejs/biome": "1.9.4",
37-
"@codspeed/vitest-plugin": "^3.1.1",
37+
"@codspeed/vitest-plugin": "3.1.1",
3838
"@repo/typescript-config": "workspace:*",
3939
"@types/react": "18.3.3",
4040
"@types/react-dom": "18.3.0",
41-
"autoprefixer": "^10.4.19",
42-
"class-variance-authority": "^0.7.0",
43-
"clsx": "^2.1.1",
44-
"lost-pixel": "^3.16.0",
45-
"postcss": "^8.4.38",
46-
"turbo": "^2.4.4",
41+
"autoprefixer": "10.4.20",
42+
"class-variance-authority": "0.7.0",
43+
"clsx": "2.1.1",
44+
"lost-pixel": "3.22.0",
45+
"postcss": "8.5.2",
46+
"turbo": "2.4.4",
4747
"typescript": "5.4.5",
4848
"vite": "5.2.12",
49-
"vitest": "^2.1.5"
49+
"vitest": "2.1.9"
5050
},
5151
"engines": {
5252
"node": "22.x"

packages/git-green-cli/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"check": "pnpm run check:typecheck & pnpm biome check --write . --no-errors-on-unmatched"
2828
},
2929
"devDependencies": {
30-
"tsup": "^8.1.0",
31-
"vitest": "^1.6.0"
30+
"tsup": "8.3.6",
31+
"vitest": "1.6.1"
3232
},
3333
"peerDependencies": {
3434
"rimraf": "^5.0.7",

packages/git-green/package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@
1414
"build-storybook": "storybook build"
1515
},
1616
"devDependencies": {
17-
"@chromatic-com/storybook": "^1.5.0",
18-
"@storybook/addon-essentials": "^8.1.5",
19-
"@storybook/addon-interactions": "^8.1.5",
20-
"@storybook/addon-links": "^8.1.5",
21-
"@storybook/addon-onboarding": "^8.1.5",
22-
"@storybook/blocks": "^8.1.5",
23-
"@storybook/react": "^8.1.5",
24-
"@storybook/react-vite": "^8.1.5",
25-
"@storybook/test": "^8.1.5",
26-
"eslint": "^8.57.0",
27-
"eslint-plugin-react-hooks": "^4.6.0",
28-
"eslint-plugin-react-refresh": "^0.4.6",
29-
"eslint-plugin-storybook": "^0.8.0",
30-
"storybook": "^8.1.5",
31-
"typescript": "^5.2.2",
17+
"@chromatic-com/storybook": "1.9.0",
18+
"@storybook/addon-essentials": "8.3.0",
19+
"@storybook/addon-interactions": "8.3.0",
20+
"@storybook/addon-links": "8.3.0",
21+
"@storybook/addon-onboarding": "8.3.0",
22+
"@storybook/blocks": "8.3.0",
23+
"@storybook/react": "8.3.0",
24+
"@storybook/react-vite": "8.3.0",
25+
"@storybook/test": "8.3.0",
26+
"eslint": "8.57.1",
27+
"eslint-plugin-react-hooks": "4.6.2",
28+
"eslint-plugin-react-refresh": "0.4.19",
29+
"eslint-plugin-storybook": "0.8.0",
30+
"storybook": "8.3.0",
31+
"typescript": "5.4.5",
3232
"tailwindcss": "catalog:"
3333
}
3434
}

packages/ui/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@
3535
"@storybook/react-vite": "8.3.0",
3636
"@storybook/test": "8.3.0",
3737
"@storybook/theming": "8.3.0",
38-
"@turbo/gen": "^1.11.3",
39-
"@types/node": "^20.10.6",
38+
"@turbo/gen": "1.13.4",
39+
"@types/node": "20.17.17",
4040
"@types/react": "^18.2.46",
4141
"@types/react-dom": "^18.2.18",
42-
"react": "^18.2.0",
43-
"react-dom": "^18.2.0",
42+
"react": "18.3.1",
43+
"react-dom": "18.3.1",
4444
"storybook": "8.3.0",
45-
"stylelint": "^16.14.1",
46-
"typescript": "^5.3.3",
47-
"stylelint-config-standard": "^37.0.0"
45+
"stylelint": "16.14.1",
46+
"typescript": "5.4.5",
47+
"stylelint-config-standard": "37.0.0"
4848
},
4949
"dependencies": {
5050
"blocks": "link:@storybook/addon-docs/blocks"

0 commit comments

Comments
 (0)