Skip to content

Commit 9140cd5

Browse files
Merge pull request #1139 from rackerlabs/renovate/actions-checkout-5.x
chore(deps): update actions/checkout action to v5
2 parents e94df0a + 9638e1f commit 9140cd5

13 files changed

+20
-20
lines changed

.github/workflows/build-container-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
packages: write
2929
contents: read
3030
steps:
31-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
31+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3232
- name: Set up Docker Buildx
3333
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3
3434

.github/workflows/build-dexop.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
packages: write
1717
contents: read
1818
steps:
19-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
19+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2020
- name: Set up Docker Buildx
2121
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3
2222

.github/workflows/build-ironic-images.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
yaml-files: ${{ steps.set-matrix.outputs.yaml-files }}
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
28+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2929

3030
- name: Find YAML files
3131
id: set-matrix
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Checkout repository
45-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
45+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4646

4747
- name: Install Dependencies
4848
run: sudo apt update && sudo apt install -y grub-efi-amd64-signed shim-signed mtools ipxe
@@ -84,7 +84,7 @@ jobs:
8484

8585
steps:
8686
- name: Checkout repository
87-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
87+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
8888

8989
- name: Set up variables
9090
run: |

.github/workflows/code-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
outputs:
2626
projects: ${{ steps.set-projects.outputs.projects }}
2727
steps:
28-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
28+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2929
- name: Find all projects with pyproject.toml
3030
id: set-projects
3131
run: |
@@ -46,7 +46,7 @@ jobs:
4646
working-directory: ./python/${{ matrix.project }}
4747

4848
steps:
49-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
49+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
5050
- uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6
5151
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
5252
with:

.github/workflows/go-lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
setup:
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
34+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3535

3636
# List directories and set as output
3737
- name: List Applications
@@ -57,7 +57,7 @@ jobs:
5757
matrix:
5858
app: ${{ fromJson(needs.setup.outputs.apps) }}
5959
steps:
60-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
60+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
6161
with:
6262
fetch-depth: 1
6363

.github/workflows/lint-workflow-templates.yaml

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

1313
steps:
1414
- name: Checkout latest changes from the PR branch
15-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
15+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1616

1717
- name: Set up Kind cluster with Helm
1818
uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0

.github/workflows/mkdocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929

3030
steps:
31-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
31+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3232
- name: markdownlint
3333
uses: nosborn/github-action-markdown-cli@508d6cefd8f0cc99eab5d2d4685b1d5f470042c1 # v3.5.0
3434
with:

.github/workflows/no-pr-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout repository
12-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
12+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1313

1414
- name: Check files matching glob patterns for pr-\d+ pattern
1515
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pre-commit:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
16+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1717
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
1818
id: setup-python
1919
with:

.github/workflows/trufflehog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
depth = depth + 2
3434
core.info(`Will fetch ${depth} commits from ${branch}.`)
3535
return { "depth": depth, "branch": branch }
36-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
36+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3737
with:
3838
ref: ${{steps.git-intel.outputs.result.branch}}
3939
fetch-depth: ${{steps.git-intel.outputs.result.depth}}

0 commit comments

Comments
 (0)