Skip to content

Commit 07ec1cd

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9f0649f commit 07ec1cd

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
psql --version
5656
Write-Host "Active .NET SDK: $(dotnet --version)"
5757
- name: Git checkout
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v5
5959
- name: Restore tools
6060
run: dotnet tool restore
6161
- name: Restore packages
@@ -160,7 +160,7 @@ jobs:
160160
8.0.*
161161
9.0.*
162162
- name: Git checkout
163-
uses: actions/checkout@v4
163+
uses: actions/checkout@v5
164164
- name: Restore tools
165165
run: dotnet tool restore
166166
- name: InspectCode
@@ -219,7 +219,7 @@ jobs:
219219
8.0.*
220220
9.0.*
221221
- name: Git checkout
222-
uses: actions/checkout@v4
222+
uses: actions/checkout@v5
223223
with:
224224
fetch-depth: 2
225225
- name: Restore tools

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
8.0.*
3030
9.0.*
3131
- name: Git checkout
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
- name: Initialize CodeQL
3434
uses: github/codeql-action/init@v3
3535
with:

.github/workflows/deps-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: 'Checkout Repository'
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: 'Dependency Review'
1414
uses: actions/dependency-review-action@v4

.github/workflows/qodana.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
8.0.*
2929
9.0.*
3030
- name: Git checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
3434
fetch-depth: 0 # a full history is required for pull request analysis

0 commit comments

Comments
 (0)