build(deps): bump the actions group across 1 directory with 3 updates

Bumps the actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/setup-java](https://github.com/actions/setup-java).


Updates `actions/checkout` from 4 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/v4...v5)

Updates `actions/download-artifact` from 4 to 5
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v4...v5)

Updates `actions/setup-java` from 4 to 5
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v4...v5)

---
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/download-artifact
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/setup-java
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2025-08-21 11:38:10 +00:00
committed by GitHub
parent 1ccdbc2b76
commit 04c9fab51e
17 changed files with 26 additions and 26 deletions

View File

@@ -11,7 +11,7 @@ jobs:
env: env:
ISSUE_CONTENT: ${{ github.event.issue.body }} ISSUE_CONTENT: ${{ github.event.issue.body }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Parse issue body - name: Parse issue body
id: handle-add-device id: handle-add-device
run: | run: |

View File

@@ -49,7 +49,7 @@ jobs:
remove-haskell: 'true' remove-haskell: 'true'
remove-codeql: 'true' remove-codeql: 'true'
- uses: actions/checkout@v4 - uses: actions/checkout@v5
with: with:
path: KernelSU path: KernelSU
fetch-depth: 0 fetch-depth: 0

View File

@@ -53,9 +53,9 @@ jobs:
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
steps: steps:
- name: Download artifacts - name: Download artifacts
uses: actions/download-artifact@v4 uses: actions/download-artifact@v5
- uses: actions/checkout@v4 - uses: actions/checkout@v5
with: with:
path: KernelSU path: KernelSU
fetch-depth: 0 fetch-depth: 0

View File

@@ -88,9 +88,9 @@ jobs:
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
steps: steps:
- name: Download artifacts - name: Download artifacts
uses: actions/download-artifact@v4 uses: actions/download-artifact@v5
- uses: actions/checkout@v4 - uses: actions/checkout@v5
with: with:
path: KernelSU path: KernelSU
fetch-depth: 0 fetch-depth: 0

View File

@@ -100,9 +100,9 @@ jobs:
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
steps: steps:
- name: Download artifacts - name: Download artifacts
uses: actions/download-artifact@v4 uses: actions/download-artifact@v5
- uses: actions/checkout@v4 - uses: actions/checkout@v5
with: with:
path: KernelSU path: KernelSU
fetch-depth: 0 fetch-depth: 0

View File

@@ -73,9 +73,9 @@ jobs:
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
steps: steps:
- name: Download artifacts - name: Download artifacts
uses: actions/download-artifact@v4 uses: actions/download-artifact@v5
- uses: actions/checkout@v4 - uses: actions/checkout@v5
with: with:
path: KernelSU path: KernelSU
fetch-depth: 0 fetch-depth: 0

View File

@@ -66,7 +66,7 @@ jobs:
sudo ln -s --force /usr/bin/clang++-$LLVM_VERSION /usr/bin/clang++ sudo ln -s --force /usr/bin/clang++-$LLVM_VERSION /usr/bin/clang++
- name: Checkout KernelSU - name: Checkout KernelSU
uses: actions/checkout@v4 uses: actions/checkout@v5
with: with:
path: KernelSU path: KernelSU
fetch-depth: 0 fetch-depth: 0

View File

@@ -52,7 +52,7 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v5
with: with:
fetch-depth: 0 fetch-depth: 0
@@ -79,7 +79,7 @@ jobs:
fi fi
- name: Setup Java - name: Setup Java
uses: actions/setup-java@v4 uses: actions/setup-java@v5
with: with:
distribution: temurin distribution: temurin
java-version: 21 java-version: 21
@@ -91,13 +91,13 @@ jobs:
uses: android-actions/setup-android@v3 uses: android-actions/setup-android@v3
- name: Download arm64 ksud - name: Download arm64 ksud
uses: actions/download-artifact@v4 uses: actions/download-artifact@v5
with: with:
name: ksud-aarch64-linux-android name: ksud-aarch64-linux-android
path: . path: .
- name: Download x86_64 ksud - name: Download x86_64 ksud
uses: actions/download-artifact@v4 uses: actions/download-artifact@v5
with: with:
name: ksud-x86_64-linux-android name: ksud-x86_64-linux-android
path: . path: .

View File

@@ -15,7 +15,7 @@ jobs:
name: Build userspace su name: Build userspace su
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Setup need_upload - name: Setup need_upload

View File

@@ -21,7 +21,7 @@ jobs:
clippy: clippy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- run: rustup update stable - run: rustup update stable
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
with: with:

View File

@@ -31,7 +31,7 @@ jobs:
working-directory: ./website working-directory: ./website
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v5
with: with:
fetch-depth: 0 # Not needed if lastUpdated is not enabled fetch-depth: 0 # Not needed if lastUpdated is not enabled
- name: Setup Node - name: Setup Node

View File

@@ -82,7 +82,7 @@ jobs:
remove-haskell: 'true' remove-haskell: 'true'
remove-codeql: 'true' remove-codeql: 'true'
- uses: actions/checkout@v4 - uses: actions/checkout@v5
with: with:
path: KernelSU path: KernelSU
fetch-depth: 0 fetch-depth: 0

View File

@@ -21,12 +21,12 @@ jobs:
build: build:
runs-on: ${{ inputs.os }} runs-on: ${{ inputs.os }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Download artifacts - name: Download artifacts
uses: actions/download-artifact@v4 uses: actions/download-artifact@v5
- name: Prepare LKM fies - name: Prepare LKM fies
if: ${{ inputs.pack_lkm }} if: ${{ inputs.pack_lkm }}

View File

@@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Download artifacts - name: Download artifacts
uses: actions/download-artifact@v4 uses: actions/download-artifact@v5
- name: Rename ksud - name: Rename ksud
run: | run: |
mkdir -p ksud mkdir -p ksud

View File

@@ -21,7 +21,7 @@ jobs:
format: format:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@nightly - uses: dtolnay/rust-toolchain@nightly
with: with:

View File

@@ -18,7 +18,7 @@ jobs:
shellcheck: shellcheck:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Run ShellCheck - name: Run ShellCheck
uses: ludeeus/action-shellcheck@2.0.0 uses: ludeeus/action-shellcheck@2.0.0

View File

@@ -44,13 +44,13 @@ jobs:
cached: ${{ steps.cache-llvm.outputs.cache-hit }} cached: ${{ steps.cache-llvm.outputs.cache-hit }}
- name: Checkout KernelSU - name: Checkout KernelSU
uses: actions/checkout@v4 uses: actions/checkout@v5
with: with:
path: KernelSU path: KernelSU
fetch-depth: 0 fetch-depth: 0
- name: Setup kernel source - name: Setup kernel source
uses: actions/checkout@v4 uses: actions/checkout@v5
with: with:
repository: microsoft/WSA-Linux-Kernel repository: microsoft/WSA-Linux-Kernel
ref: android-lts/latte-2/${{ inputs.version }} ref: android-lts/latte-2/${{ inputs.version }}