Skip to content

Commit 3b30124

Browse files
authored
Merge pull request #238 from sir-gon/renovate/actions-checkout-5.x
Update actions/checkout action to v5
2 parents fc69283 + adb8050 commit 3b30124

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
# yamllint enable rule:line-length
6969
steps:
7070
- name: Checkout repository
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v5
7272

7373
# Initializes the CodeQL tools for scanning.
7474
- name: Initialize CodeQL

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: "Build Docker images"
1919
runs-on: ubuntu-24.04
2020
steps:
21-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
21+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2222

2323
- name: Set up Docker Buildx
2424
uses: docker/setup-buildx-action@v3

.github/workflows/dotnet-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
os: ["windows-2025"]
2424
runs-on: ${{ matrix.os }}
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- name: Setup .NET
2828
uses: actions/setup-dotnet@v4
2929
with:

.github/workflows/dotnet-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
dotnet-version: [8.x, 9.x]
2525
runs-on: ${{ matrix.os }}
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
- name: Setup .NET ${{ matrix.dotnet-version }}
2929
uses: actions/setup-dotnet@v4
3030
with:

.github/workflows/dotnet-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
dotnet-version: [8.x, 9.x]
2525
runs-on: ${{ matrix.os }}
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
- name: Setup .NET ${{ matrix.dotnet-version }}
2929
uses: actions/setup-dotnet@v4
3030
with:

.github/workflows/gitleaks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: gitleaks
2323
runs-on: ubuntu-24.04
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 0
2828
- uses: gitleaks/gitleaks-action@v2

.github/workflows/markdown-lint.yml

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

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
27+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2828

2929
- name: Set up Node.js ${{ matrix.node-version }}
3030
uses: actions/setup-node@v4

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
java-version: 21
2020
# Alternative distribution options are available.
2121
distribution: "temurin"
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
# Shallow clones should be disabled for a better relevancy of analysis
2525
fetch-depth: 0

.github/workflows/yamllint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
18+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1919

2020
- name: Install yamllint
2121
run: pip install yamllint

0 commit comments

Comments
 (0)