From 87335ef97e86bf8ace736e7a777acae46e2d5abc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 16:04:34 +0000 Subject: [PATCH] Upgrade: Bump the actions group across 1 directory with 7 updates Bumps the actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [OpenTTD/actions](https://github.com/openttd/actions) | `5` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [OpenTTD/actions/.github/workflows/rw-py-flake8.yml](https://github.com/openttd/actions) | `5` | `6` | | [OpenTTD/actions/.github/workflows/rw-py-black.yml](https://github.com/openttd/actions) | `5` | `6` | | [OpenTTD/actions/.github/workflows/rw-annotation-check.yml](https://github.com/openttd/actions) | `5` | `6` | 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 `OpenTTD/actions` from 5 to 6 - [Release notes](https://github.com/openttd/actions/releases) - [Commits](https://github.com/openttd/actions/compare/v5...v6) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) Updates `OpenTTD/actions/.github/workflows/rw-py-flake8.yml` from 5 to 6 - [Release notes](https://github.com/openttd/actions/releases) - [Commits](https://github.com/openttd/actions/compare/v5...v6) Updates `OpenTTD/actions/.github/workflows/rw-py-black.yml` from 5 to 6 - [Release notes](https://github.com/openttd/actions/releases) - [Commits](https://github.com/openttd/actions/compare/v5...v6) Updates `OpenTTD/actions/.github/workflows/rw-annotation-check.yml` from 5 to 6 - [Release notes](https://github.com/openttd/actions/releases) - [Commits](https://github.com/openttd/actions/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: OpenTTD/actions dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: OpenTTD/actions/.github/workflows/rw-py-flake8.yml dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: OpenTTD/actions/.github/workflows/rw-py-black.yml dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: OpenTTD/actions/.github/workflows/rw-annotation-check.yml dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/commit-checker.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- .github/workflows/testing.yml | 18 +++++++++--------- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/commit-checker.yml b/.github/workflows/commit-checker.yml index 511e6f3..f3266b4 100644 --- a/.github/workflows/commit-checker.yml +++ b/.github/workflows/commit-checker.yml @@ -10,12 +10,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 4 - name: Get pull-request commits - uses: OpenTTD/actions/checkout-pull-request@v5 + uses: OpenTTD/actions/checkout-pull-request@v6 - name: Check commits uses: OpenTTD/OpenTTD-git-hooks@main diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cdb9406..be84889 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,12 +10,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.8' diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 090d611..b17915b 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -19,10 +19,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: 3.8 @@ -30,24 +30,24 @@ jobs: run: python -m pip install -e . - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: python queries: security-and-quality source-root: . - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 flake8: name: Flake8 - uses: OpenTTD/actions/.github/workflows/rw-py-flake8.yml@v5 + uses: OpenTTD/actions/.github/workflows/rw-py-flake8.yml@v6 with: python-path: openttd_protocol black: name: Black - uses: OpenTTD/actions/.github/workflows/rw-py-black.yml@v5 + uses: OpenTTD/actions/.github/workflows/rw-py-black.yml@v6 with: python-version: 3.8 python-path: openttd_protocol @@ -58,10 +58,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Python 3.8 - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: 3.8 @@ -81,4 +81,4 @@ jobs: - pytest # not codeql, as that reports its own status - uses: OpenTTD/actions/.github/workflows/rw-annotation-check.yml@v5 + uses: OpenTTD/actions/.github/workflows/rw-annotation-check.yml@v6