From 05151c4551176b5322025b56270100ac1ce5225b Mon Sep 17 00:00:00 2001 From: LGLabGreg Date: Sun, 9 Nov 2025 11:40:16 +0000 Subject: [PATCH 1/3] ci: update actions --- .changeset/dark-crews-dream.md | 6 ++++++ .github/dependabot.yml | 5 +++++ .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 8 ++++---- 4 files changed, 18 insertions(+), 7 deletions(-) create mode 100644 .changeset/dark-crews-dream.md 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..15d2b8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,15 +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' - name: Install pnpm - uses: pnpm/action-setup@v3 + uses: pnpm/action-setup@v4 with: version: 10 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 56e7b0e..9cdb31f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,18 +18,18 @@ 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' registry-url: 'https://registry.npmjs.org' - name: Install pnpm - uses: pnpm/action-setup@v3 + uses: pnpm/action-setup@v4 with: version: 10 @@ -38,7 +38,7 @@ jobs: - 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' From a351eaae4de0752483773988ed9ab0bd9cda295e Mon Sep 17 00:00:00 2001 From: LGLabGreg Date: Sun, 9 Nov 2025 11:46:28 +0000 Subject: [PATCH 2/3] ci From 9416d09792694f20790e90e262bae29df4b17d1a Mon Sep 17 00:00:00 2001 From: LGLabGreg Date: Sun, 9 Nov 2025 11:50:40 +0000 Subject: [PATCH 3/3] ci: fix pnpm action version --- .github/workflows/ci.yml | 4 +--- .github/workflows/release.yml | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15d2b8a..2698c6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,12 +16,10 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v6 with: - node-version: '20.x' + node-version: 20 - name: Install pnpm uses: pnpm/action-setup@v4 - with: - version: 10 - name: Get pnpm store directory id: store-path diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9cdb31f..71e4f64 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,13 +25,11 @@ jobs: - name: Setup Node.js 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@v4 - with: - version: 10 - name: Install Dependencies run: pnpm install