Skip to content

Commit

Permalink
update github action versions, node version and pnpm version
Browse files Browse the repository at this point in the history
  • Loading branch information
antpaw committed Oct 7, 2024
1 parent 9783573 commit cb536cb
Show file tree
Hide file tree
Showing 10 changed files with 6,753 additions and 7,967 deletions.
8 changes: 4 additions & 4 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ inputs:
runs:
using: "composite"
steps:
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
name: Install pnpm
id: pnpm-install
with:
version: 8.6.11
version: 9
run_install: ${{ inputs.run_install }}

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18.16.0
node-version: 20
registry-url: https://npm.pkg.github.com
scope: '@hivemq'
cache: 'pnpm'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 👓 Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/setup

Expand All @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ./.github/actions/setup
with:
Expand All @@ -33,7 +33,7 @@ jobs:
timeout-minutes: 15

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ./.github/actions/setup
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
timeout-minutes: 15

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ./.github/actions/setup
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft-next-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ./.github/actions/setup
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
packages: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ./.github/actions/setup
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ui-library-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 👓 Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/setup
with:
Expand All @@ -40,7 +40,7 @@ jobs:
timeout-minutes: 5

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ./.github/actions/setup
with:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.16.0
v20
12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,11 @@
"types": "./dist/index.d.ts",
"module": "./dist/index.es.js"
},
"files": ["dist"],
"engines": {
"node": ">=18",
"pnpm": ">=8"
"node": "20",
"pnpm": "9"
},
"files": [
"dist"
],
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm build:scripts",
"build:scripts": "vite build",
Expand Down Expand Up @@ -47,7 +44,6 @@
"@emotion/styled": "^11.12.0",
"@fontsource/raleway": "^5.0.19",
"@fontsource/roboto": "^5.0.13",
"@hivemq/ui-theme": "^0.4.2",
"@radix-ui/react-slot": "^1.1.0",
"@storybook/addon-a11y": "^8.2.6",
"@storybook/addon-essentials": "^8.2.4",
Expand Down Expand Up @@ -85,7 +81,7 @@
"@chakra-ui/styled-system": "^2.9.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@hivemq/ui-theme": "^0.4.2",
"@hivemq/ui-theme": "^0.4.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
Expand Down
Loading

0 comments on commit cb536cb

Please sign in to comment.