From 04a8a60a871384ad436eacb9623ced620132e28b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Sep 2025 06:26:51 +0000 Subject: [PATCH] Bump the actions group with 4 updates Bumps the actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [actions/setup-go](https://github.com/actions/setup-go) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 3 to 5 - [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/v3...v5) Updates `actions/setup-python` from 4 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v6) Updates `actions/setup-go` from 3 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3...v6) Updates `actions/cache` from 3 to 4 - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 28 +++++++++++++-------------- .github/workflows/codeql-analysis.yml | 4 ++-- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebd09d151..134210369 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,18 +45,18 @@ jobs: steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 10 persist-credentials: false - name: Set up Python ${{ matrix.pyver }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.pyver }} - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: go-version-file: go.mod @@ -73,7 +73,7 @@ jobs: CFLAGS: -funsigned-char steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 0 # needed for :commit: docs role persist-credentials: false @@ -85,18 +85,18 @@ jobs: run: if grep -Inr ':code:`\s' kitty kitty_tests kittens docs *.py *.asciidoc *.rst *.go .gitattributes .gitignore; then echo Space at code block start found, aborting.; exit 1; fi - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: "3.13" - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: go-version-file: go.mod cache: false - name: Cache Go build artifacts separately - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cache/go-build @@ -145,13 +145,13 @@ jobs: KITTY_BUNDLE: 1 steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 10 persist-credentials: false - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: go-version-file: go.mod @@ -166,18 +166,18 @@ jobs: runs-on: macos-latest steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 0 # needed for :commit: docs role persist-credentials: false - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: "3.11" - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: go-version-file: go.mod @@ -204,7 +204,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 10 persist-credentials: false @@ -213,7 +213,7 @@ jobs: run: sudo apt-get update && sudo apt-get install -y curl xz-utils build-essential git pkg-config libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libgl1-mesa-dev libxkbcommon-x11-dev libfontconfig-dev libx11-xcb-dev libdbus-1-dev - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: go-version-file: go.mod diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 1ad304348..0d153f863 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -24,14 +24,14 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. fetch-depth: 2 - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v6 with: go-version-file: go.mod