From c499ac3140c9da44801dba7015e4a418b022ae8f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 22:54:17 +0000 Subject: [PATCH] dev: bump the all group across 1 directory with 3 updates Bumps the all group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact). Updates `actions/checkout` from 6 to 7 - [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/v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) Updates `dawidd6/action-download-artifact` from 20 to 21 - [Release notes](https://github.com/dawidd6/action-download-artifact/releases) - [Commits](https://github.com/dawidd6/action-download-artifact/compare/v20...v21) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: dawidd6/action-download-artifact dependency-version: '21' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/changelog-cutoff.yml | 2 +- .github/workflows/console-e2e.yml | 20 ++++++++++---------- .github/workflows/create-release-branch.yml | 2 +- .github/workflows/general.yml | 2 +- .github/workflows/go.yml | 4 ++-- .github/workflows/js.yml | 4 ++-- .github/workflows/mergeability.yml | 2 +- .github/workflows/proto.yml | 2 +- .github/workflows/release-rc.yml | 4 ++-- .github/workflows/release-snapshot.yml | 4 ++-- .github/workflows/release-tag.yml | 4 ++-- 11 files changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/workflows/changelog-cutoff.yml b/.github/workflows/changelog-cutoff.yml index 2307f988fe..357b56ce35 100644 --- a/.github/workflows/changelog-cutoff.yml +++ b/.github/workflows/changelog-cutoff.yml @@ -20,7 +20,7 @@ jobs: - name: Check branch run: echo "${{ github.ref_name }}" | grep -Pq '^v3\.\d+$' - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 submodules: true diff --git a/.github/workflows/console-e2e.yml b/.github/workflows/console-e2e.yml index 40a8762c82..310a63c623 100644 --- a/.github/workflows/console-e2e.yml +++ b/.github/workflows/console-e2e.yml @@ -36,7 +36,7 @@ jobs: timeout-minutes: 5 steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 submodules: false @@ -45,7 +45,7 @@ jobs: run: echo "hash=${{ hashFiles('.github/workflows/console-e2e.yml', '*.go', 'go.mod', 'go.sum', 'pkg/**', 'tools/**', 'config/**', 'package.json', 'pkg/webui/**', 'sdk/js/**', 'yarn.lock', 'cypress/**', 'docker-compose.yml') }}" >> $GITHUB_OUTPUT - name: Get the cached result id: run-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .cache/passed key: run-cache-${{ steps.get-hash.outputs.hash }}-${{ github.run_id }} @@ -63,7 +63,7 @@ jobs: timeout-minutes: 30 steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 submodules: true @@ -75,7 +75,7 @@ jobs: uses: ./.github/actions/install-node-and-deps - name: Initialize SQL dump cache id: db-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | .env/cache/database.pgdump @@ -83,7 +83,7 @@ jobs: key: db-cache-${{ hashFiles('pkg/identityserver/**/*.go', 'pkg/identityserver/**/*.sql', 'cmd/ttn-lw-stack/commands/is_db.go', '.github/workflows/console-e2e.yml', 'docker-compose.yml') }} - name: Initialize device repository index cache id: dr-index-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: data/lorawan-devices-index key: dr-index-cache-${{ hashFiles('data/lorawan-devices') }} @@ -97,7 +97,7 @@ jobs: uses: ./.github/actions/build-frontend - name: Initialize build cache id: build-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ttn-lw-stack key: build-cache-${{ hashFiles('go.mod', 'go.sum', 'pkg/**', 'config/**', 'cmd/**') }} @@ -125,7 +125,7 @@ jobs: timeout-minutes: 15 steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 submodules: true @@ -145,7 +145,7 @@ jobs: with: name: "build-files" - name: Download last failed spec - uses: dawidd6/action-download-artifact@v20 + uses: dawidd6/action-download-artifact@v21 continue-on-error: true with: github_token: ${{ secrets.GITHUB_TOKEN }} @@ -222,7 +222,7 @@ jobs: timeout-minutes: 15 steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 submodules: true @@ -280,7 +280,7 @@ jobs: steps: - name: Setup result cache to skip redundant runs id: run-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .cache/passed key: run-cache-${{ needs.determine-if-required.outputs.hash }} diff --git a/.github/workflows/create-release-branch.yml b/.github/workflows/create-release-branch.yml index ea9349e43b..ad5b0d6ac5 100644 --- a/.github/workflows/create-release-branch.yml +++ b/.github/workflows/create-release-branch.yml @@ -23,7 +23,7 @@ jobs: - name: Check branch run: echo "${{ github.ref_name }}" | grep -Pq '^v3\.\d+$' - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 submodules: true diff --git a/.github/workflows/general.yml b/.github/workflows/general.yml index 7eb098008c..3e9668ae51 100644 --- a/.github/workflows/general.yml +++ b/.github/workflows/general.yml @@ -9,7 +9,7 @@ jobs: timeout-minutes: 5 steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Fetch base ref run: git fetch origin ${{ github.base_ref }} - name: Install Go and Dependencies diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 522d8ccc75..18da49d74e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -22,7 +22,7 @@ jobs: timeout-minutes: 15 steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Go and Dependencies uses: ./.github/actions/install-go-and-deps - name: Build Mage @@ -91,7 +91,7 @@ jobs: env: AWS_REGION: '${{ secrets.AWS_REGION }}' - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Go and Dependencies uses: ./.github/actions/install-go-and-deps - name: Build Mage diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index 4edd167d7c..73ba2e83eb 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -22,7 +22,7 @@ jobs: timeout-minutes: 15 steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Go and Dependencies uses: ./.github/actions/install-go-and-deps - name: Build Mage @@ -50,7 +50,7 @@ jobs: timeout-minutes: 15 steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Go and Dependencies uses: ./.github/actions/install-go-and-deps - name: Build Mage diff --git a/.github/workflows/mergeability.yml b/.github/workflows/mergeability.yml index 29366bb996..ec03a88788 100644 --- a/.github/workflows/mergeability.yml +++ b/.github/workflows/mergeability.yml @@ -30,7 +30,7 @@ jobs: git config --global user.name github-actions git config --global user.email github-actions@github.com - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: token: ${{ secrets.BOT_TOKEN }} ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/proto.yml b/.github/workflows/proto.yml index 1ed5479e13..cf1aaf7848 100644 --- a/.github/workflows/proto.yml +++ b/.github/workflows/proto.yml @@ -14,7 +14,7 @@ jobs: timeout-minutes: 5 steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Go and Dependencies uses: ./.github/actions/install-go-and-deps - name: Build Mage diff --git a/.github/workflows/release-rc.yml b/.github/workflows/release-rc.yml index 1bc276e925..03e9c635da 100644 --- a/.github/workflows/release-rc.yml +++ b/.github/workflows/release-rc.yml @@ -35,7 +35,7 @@ jobs: - name: Check branch run: echo "${{ github.ref_name }}" | grep -Pq '^release/v3\.\d+\.\d+$' - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 submodules: true @@ -56,7 +56,7 @@ jobs: uses: ./.github/actions/install-node-and-deps - name: Initialize device repository index cache id: dr-index-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: data/lorawan-devices-index key: dr-index-cache-${{ hashFiles('data/lorawan-devices') }} diff --git a/.github/workflows/release-snapshot.yml b/.github/workflows/release-snapshot.yml index 44259f4355..311131c7f0 100644 --- a/.github/workflows/release-snapshot.yml +++ b/.github/workflows/release-snapshot.yml @@ -31,7 +31,7 @@ jobs: timeout-minutes: 30 steps: - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 submodules: true @@ -52,7 +52,7 @@ jobs: uses: ./.github/actions/install-node-and-deps - name: Initialize device repository index cache id: dr-index-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: data/lorawan-devices-index key: dr-index-cache-${{ hashFiles('data/lorawan-devices') }} diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml index fcc70a0383..88d2607c7f 100644 --- a/.github/workflows/release-tag.yml +++ b/.github/workflows/release-tag.yml @@ -46,7 +46,7 @@ jobs: export VERSION=$(echo ${{ github.ref_name }} | grep -Po '3\.\d+.\d+') echo "result=$VERSION" >> $GITHUB_OUTPUT - name: Check out code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 submodules: true @@ -104,7 +104,7 @@ jobs: uses: ./.github/actions/install-node-and-deps - name: Initialize device repository index cache id: dr-index-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: data/lorawan-devices-index key: dr-index-cache-${{ hashFiles('data/lorawan-devices') }}