Skip to content

Commit c3e25cb

Browse files
build(deps): bump actions/checkout from 5 to 6 (#1153)
Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c927924 commit c3e25cb

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/cargo-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
security_audit:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- uses: actions-rs/audit-check@v1
2525
with:
2626
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323

2424
- name: Log in to the Container registry
2525
uses: docker/login-action@v3

.github/workflows/mockoon.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
container:
1414
image: quay.io/keylime/keylime-ci:latest
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: NPM installation
1818
run: dnf install -y npm
1919
- name: Run Mockoon CLI

.github/workflows/rpm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
name: Check that Fedora RPM patches still apply
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: Check that Fedora patches apply
1818
run: for p in rpm/fedora/*.patch; do patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f < "$p"; done
1919
centos:
2020
runs-on: ubuntu-latest
2121
name: Check that CentOS RPM patches still apply
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- name: Check that CentOS patches apply
2525
run: for p in rpm/centos/*.patch; do patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f < "$p"; done

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Static code checks
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- name: Check formatting
2020
run: cargo fmt --all -- --check
2121
- name: Check for panics
@@ -27,7 +27,7 @@ jobs:
2727
container:
2828
image: quay.io/keylime/keylime-ci:latest
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
- name: Set git safe.directory for the working directory
3232
run : git config --system --add safe.directory "$PWD"
3333
- name: Run tests

.github/workflows/submit-HEAD-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
name: Submit code coverage from merged PR
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- name: Install testing-farm script
1515
run: pip3 -v install tft-cli
1616
- name: Run tests on Testing Farm

.github/workflows/submit-PR-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
run:
1212
working-directory: scripts
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- name: Wait for Packit tests to finish and download e2e_coverage.txt and upstream_coverage.xml files.
1616
run: ./download_packit_coverage.sh
1717
env:

0 commit comments

Comments
 (0)