diff --git a/.changeset/dark-crews-dream.md b/.changeset/dark-crews-dream.md new file mode 100644 index 0000000..a28ddae --- /dev/null +++ b/.changeset/dark-crews-dream.md @@ -0,0 +1,6 @@ +--- +'@lglab/react-qr-code': patch +'reactqrcode.com': patch +--- + +ci: update actions diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 761fa7c..dbd8de7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -34,3 +34,8 @@ updates: patterns: - 'tailwind*' - '@tailwind*' + + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'daily' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff3fdef..2698c6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,17 +11,15 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: '20.x' + node-version: 20 - name: Install pnpm - uses: pnpm/action-setup@v3 - with: - version: 10 + uses: pnpm/action-setup@v4 - name: Get pnpm store directory id: store-path diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 56e7b0e..71e4f64 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,27 +18,25 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: '20.x' + node-version: 20 registry-url: 'https://registry.npmjs.org' - name: Install pnpm - uses: pnpm/action-setup@v3 - with: - version: 10 + uses: pnpm/action-setup@v4 - name: Install Dependencies run: pnpm install - name: Create Release Pull Request or Publish to npm id: changesets - uses: changesets/action@v1.4.9 + uses: changesets/action@v1 with: commit: 'chore(release): version packages' title: 'chore(release): version packages'