Skip to content

Commit 2aab9c6

Browse files
build(deps): bump the actions group with 2 updates
Bumps the actions group with 2 updates: [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 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@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: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent b6f3144 commit 2aab9c6

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/container-rebuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Check out repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
with:
3131
ref: ${{ github.event.inputs.git-tag }}
3232
- name: Build and push container

.github/workflows/containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Check out repository
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
- name: Build and push container
2828
uses: coreos/actions-lib/build-container@main
2929
with:

.github/workflows/rpm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install packages
2828
run: dnf install -y git make mock
2929
- name: Check out repository
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
# fetch tags for versioning
3232
with:
3333
fetch-depth: 0
@@ -41,7 +41,7 @@ jobs:
4141
mock --rebuild --enablerepo=updates-testing rpms/*.src.rpm
4242
find /var/lib/mock -wholename '*/result/*.rpm' | xargs mv -t rpms
4343
- name: Archive RPMs
44-
uses: actions/upload-artifact@v5
44+
uses: actions/upload-artifact@v6
4545
with:
4646
name: rpms
4747
path: rpms/

.github/workflows/rust.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- s390x
3838
steps:
3939
- name: Check out repository
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141
- name: Set up environment
4242
run: .github/workflows/env-setup
4343
shell: bash
@@ -85,7 +85,7 @@ jobs:
8585
- s390x
8686
steps:
8787
- name: Check out repository
88-
uses: actions/checkout@v5
88+
uses: actions/checkout@v6
8989
- name: Detect crate MSRV
9090
shell: bash
9191
run: |
@@ -142,7 +142,7 @@ jobs:
142142
- s390x
143143
steps:
144144
- name: Check out repository
145-
uses: actions/checkout@v5
145+
uses: actions/checkout@v6
146146
- name: Set up environment
147147
run: .github/workflows/env-setup
148148
shell: bash
@@ -189,7 +189,7 @@ jobs:
189189
- x86_64
190190
steps:
191191
- name: Check out repository
192-
uses: actions/checkout@v5
192+
uses: actions/checkout@v6
193193
- name: Set up environment
194194
run: .github/workflows/env-setup
195195
shell: bash
@@ -230,7 +230,7 @@ jobs:
230230
runs-on: ubuntu-latest
231231
steps:
232232
- name: Check out repository
233-
uses: actions/checkout@v5
233+
uses: actions/checkout@v6
234234
- name: Set up environment
235235
run: .github/workflows/env-setup
236236
shell: bash

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
1717
steps:
1818
- name: Check out repository
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
# https://github.com/actions/checkout/issues/760
2121
- name: Mark git checkout as safe
2222
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"

.github/workflows/tmt-tests.yml

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

3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737

3838
- name: Set additional paths
3939
run: |

0 commit comments

Comments
 (0)