Skip to content

Commit 0fcc97b

Browse files
committed
chore: upgraded github actions versions to latest
1 parent eb32cb1 commit 0fcc97b

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/commit-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
commitlint:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v3
8+
- uses: actions/checkout@v4
99
with:
1010
fetch-depth: 0
11-
- uses: wagoid/commitlint-github-action@v4
11+
- uses: wagoid/commitlint-github-action@v4

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
package-name: "react-daisyui"
1717
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false},{"type":"refactor","section":"Miscellaneous","hidden":false},{"type":"docs","section":"Storybook","hidden":true}]'
1818
command: release-pr
19-
- uses: actions/github-script@v6
19+
- uses: actions/github-script@v7
2020
if: ${{ steps.release-please.outputs.pr }}
2121
id: extract-branch
2222
env:
2323
PR: ${{ steps.release-please.outputs.pr }}
2424
with:
2525
result-encoding: string
2626
script: return JSON.parse(process.env.PR).headBranchName
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
if: ${{ steps.release-please.outputs.pr }}
2929
with:
3030
ref: ${{ steps.extract-branch.outputs.result }}
@@ -42,15 +42,15 @@ jobs:
4242
env:
4343
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
4444
steps:
45-
- uses: google-github-actions/release-please-action@v3
45+
- uses: googleapis/release-please-action@v4
4646
id: release
4747
with:
4848
release-type: node
4949
package-name: "react-daisyui"
5050
command: github-release
51-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v4
5252
if: ${{ steps.release.outputs.release_created }}
53-
- uses: actions/setup-node@v3
53+
- uses: actions/setup-node@v4
5454
with:
5555
node-version: '17.x'
5656
if: ${{ steps.release.outputs.release_created }}
@@ -59,4 +59,4 @@ jobs:
5959
- run: npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" && npm publish
6060
env:
6161
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
62-
if: ${{ steps.release.outputs.release_created }}
62+
if: ${{ steps.release.outputs.release_created }}

.github/workflows/static.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
- name: Setup Pages
35-
uses: actions/configure-pages@v3
35+
uses: actions/configure-pages@v5
3636
- name: Upload artifact
37-
uses: actions/upload-pages-artifact@v1
37+
uses: actions/upload-pages-artifact@v3
3838
with:
3939
# Upload entire repository
4040
path: './docs'
4141
- name: Deploy to GitHub Pages
4242
id: deployment
43-
uses: actions/deploy-pages@v2
43+
uses: actions/deploy-pages@v4

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v3
24+
uses: actions/setup-node@v4
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
# cache: 'npm'
2828
- run: npm ci
2929
env:
3030
NPM_TOKEN: ${{ secrets.LEV_NPM_TOKEN }}
31-
- run: npm run test
31+
- run: npm run test

0 commit comments

Comments
 (0)