From 41069ad0f18b8c5280345c15815998f074a9211a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 05:54:32 +0000 Subject: [PATCH] deps: bump the all-actions group across 1 directory with 7 updates Bumps the all-actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/stale](https://github.com/actions/stale) | `9` | `10` | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/labeler](https://github.com/actions/labeler) | `5` | `6` | | [kentaro-m/auto-assign-action](https://github.com/kentaro-m/auto-assign-action) | `2.0.0` | `2.0.1` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [cycjimmy/semantic-release-action](https://github.com/cycjimmy/semantic-release-action) | `4.2.2` | `6.0.0` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | Updates `actions/stale` from 9 to 10 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v9...v10) 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/labeler` from 5 to 6 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v5...v6) Updates `kentaro-m/auto-assign-action` from 2.0.0 to 2.0.1 - [Release notes](https://github.com/kentaro-m/auto-assign-action/releases) - [Commits](https://github.com/kentaro-m/auto-assign-action/compare/v2.0.0...v2.0.1) 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 `cycjimmy/semantic-release-action` from 4.2.2 to 6.0.0 - [Release notes](https://github.com/cycjimmy/semantic-release-action/releases) - [Changelog](https://github.com/cycjimmy/semantic-release-action/blob/main/docs/CHANGELOG.md) - [Commits](https://github.com/cycjimmy/semantic-release-action/compare/v4.2.2...v6.0.0) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/stale dependency-version: '10' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/labeler dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: kentaro-m/auto-assign-action dependency-version: 2.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: cycjimmy/semantic-release-action dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/flag-stale.yml | 2 +- .github/workflows/label-and-assign.yml | 8 ++++---- .github/workflows/pr_checks.yaml | 4 ++-- .github/workflows/pr_checks_backend.yml | 16 ++++++++-------- .github/workflows/release.yml | 8 ++++---- .github/workflows/weekly-pr-to-main.yml | 2 +- 6 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/flag-stale.yml b/.github/workflows/flag-stale.yml index 07e33a15..a57cd954 100644 --- a/.github/workflows/flag-stale.yml +++ b/.github/workflows/flag-stale.yml @@ -14,7 +14,7 @@ jobs: stale: runs-on: ubuntu-latest steps: - - uses: actions/stale@v9 + - uses: actions/stale@v10 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-stale: 7 diff --git a/.github/workflows/label-and-assign.yml b/.github/workflows/label-and-assign.yml index ea9ffe0f..31e8ef3c 100644 --- a/.github/workflows/label-and-assign.yml +++ b/.github/workflows/label-and-assign.yml @@ -6,10 +6,10 @@ jobs: label: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Label PR - uses: actions/labeler@v5 + uses: actions/labeler@v6 with: repo-token: ${{ secrets.GITHUB_TOKEN }} @@ -18,10 +18,10 @@ jobs: needs: label steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Assign Reviewers - uses: kentaro-m/auto-assign-action@v2.0.0 + uses: kentaro-m/auto-assign-action@v2.0.1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} configuration-path: '.github/auto_assign.yml' diff --git a/.github/workflows/pr_checks.yaml b/.github/workflows/pr_checks.yaml index f58023bc..1fe511e5 100644 --- a/.github/workflows/pr_checks.yaml +++ b/.github/workflows/pr_checks.yaml @@ -11,10 +11,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: '20' diff --git a/.github/workflows/pr_checks_backend.yml b/.github/workflows/pr_checks_backend.yml index 0c2d727b..51c3444a 100644 --- a/.github/workflows/pr_checks_backend.yml +++ b/.github/workflows/pr_checks_backend.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 @@ -27,7 +27,7 @@ jobs: needs: setup steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Run Pytest run: | @@ -41,7 +41,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Run Ruff Formatter in Docker run: | @@ -55,7 +55,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Run Ruff Linter in Docker run: | @@ -68,7 +68,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Build vacant-lots-proj run: | @@ -81,7 +81,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Run all services run: | @@ -94,7 +94,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Check build status if: failure() @@ -111,7 +111,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Check formatter and linter status if: failure() diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fa630424..03ea31f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,12 +12,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: '20.8.1' @@ -25,7 +25,7 @@ jobs: run: npm ci - name: Create Tag - uses: cycjimmy/semantic-release-action@v4.2.2 + uses: cycjimmy/semantic-release-action@v6.0.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -48,7 +48,7 @@ jobs: - name: Publish release notes if: steps.get_version.outputs.version != '' - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: NEW_VERSION: ${{ steps.get_version.outputs.version }} with: diff --git a/.github/workflows/weekly-pr-to-main.yml b/.github/workflows/weekly-pr-to-main.yml index f6f538c4..3f7c66bc 100644 --- a/.github/workflows/weekly-pr-to-main.yml +++ b/.github/workflows/weekly-pr-to-main.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 # Fetch all history for all branches and tags