From 418afe6f9702f75f7531b24a5014bde0508e9d86 Mon Sep 17 00:00:00 2001 From: sd416 <65273389+sd416@users.noreply.github.com> Date: Mon, 19 Jan 2026 19:01:45 +0530 Subject: [PATCH 1/2] Configure Dependabot for GitHub Actions updates Add GitHub Actions to Dependabot configuration for weekly updates. --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..d2e66eec --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + groups: + actions: + patterns: + - "*" From b8e7932ea59eb72b4b2d7a10a0ecb869c2354ee6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 13:32:51 +0000 Subject: [PATCH 2/2] chore(deps): bump the actions group with 3 updates Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node) and [tauri-apps/tauri-action](https://github.com/tauri-apps/tauri-action). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) Updates `tauri-apps/tauri-action` from 0.5.17 to 0.6.1 - [Release notes](https://github.com/tauri-apps/tauri-action/releases) - [Changelog](https://github.com/tauri-apps/tauri-action/blob/v0.6.1/CHANGELOG.md) - [Commits](https://github.com/tauri-apps/tauri-action/compare/v0.5.17...v0.6.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: tauri-apps/tauri-action dependency-version: 0.6.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-tests.yml | 4 ++-- .github/workflows/ci.yml | 4 ++-- .github/workflows/prerelease.yml | 6 +++--- .github/workflows/release-macos-aarch64.yml | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 75f55d1d..8948d155 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -20,10 +20,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 20 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb956d42..131a508a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 20 diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index ce730bbf..7569e013 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -85,12 +85,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.sha }} - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 20 @@ -135,7 +135,7 @@ jobs: echo "NOTARY_KEY_PATH=$NOTARY_KEY_PATH" >> "$GITHUB_ENV" - name: Build + upload - uses: tauri-apps/tauri-action@v0.5.17 + uses: tauri-apps/tauri-action@v0.6.1 env: CI: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release-macos-aarch64.yml b/.github/workflows/release-macos-aarch64.yml index ea8494bd..99299e08 100644 --- a/.github/workflows/release-macos-aarch64.yml +++ b/.github/workflows/release-macos-aarch64.yml @@ -203,12 +203,12 @@ jobs: run: git config --global core.longpaths true - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ env.RELEASE_TAG }} - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 20 @@ -253,7 +253,7 @@ jobs: echo "NOTARY_KEY_PATH=$NOTARY_KEY_PATH" >> "$GITHUB_ENV" - name: Build + upload - uses: tauri-apps/tauri-action@v0.5.17 + uses: tauri-apps/tauri-action@v0.6.1 env: CI: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}