Skip to content

Commit 08407f3

Browse files
build(deps): bump the github-actions group across 1 directory with 2 updates
Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0b23457 commit 08407f3

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
with:
2323
submodules: recursive
2424

@@ -34,7 +34,7 @@ jobs:
3434
- name: Build
3535
run: make -k -j2 ARCH=aarch64-linux-gnu- CHAINLOADING=1
3636

37-
- uses: actions/upload-artifact@v4
37+
- uses: actions/upload-artifact@v5
3838
with:
3939
name: m1n1
4040
path: |

.github/workflows/installer.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
submodules: recursive
2929

3030
- name: Checkout linux
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
with:
3333
repository: AsahiLinux/linux
3434
ref: 'asahi'
@@ -37,7 +37,7 @@ jobs:
3737
fetch-tags: 'true'
3838

3939
- name: Checkout u-boot
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141
with:
4242
repository: AsahiLinux/u-boot
4343
ref: 'asahi-releng'
@@ -89,7 +89,7 @@ jobs:
8989
cd out
9090
zip -r uefi-only-${{ env.GIT_DATE }}-${{ env.KERNEL_REF }}.zip esp
9191
92-
- uses: actions/upload-artifact@v4
92+
- uses: actions/upload-artifact@v5
9393
with:
9494
name: ci-uefi-only-${{ env.GIT_DATE }}-${{ env.KERNEL_REF }}
9595
path: |

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323

2424
- name: install nightly rust
2525
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: Set up Python
3131
uses: actions/setup-python@v6

0 commit comments

Comments
 (0)