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: + - "*" 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 }}