Skip to content

Commit f20b889

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

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
psql --version
7171
Write-Host "Active .NET SDK: $(dotnet --version)"
7272
- name: Git checkout
73-
uses: actions/checkout@v3
73+
uses: actions/checkout@v4
7474
- name: Restore tools
7575
run: |
7676
dotnet tool restore
@@ -161,7 +161,7 @@ jobs:
161161
contents: read
162162
steps:
163163
- name: Git checkout
164-
uses: actions/checkout@v3
164+
uses: actions/checkout@v4
165165
- name: Setup .NET
166166
uses: actions/setup-dotnet@v3
167167
with:
@@ -212,7 +212,7 @@ jobs:
212212
contents: read
213213
steps:
214214
- name: Git checkout
215-
uses: actions/checkout@v3
215+
uses: actions/checkout@v4
216216
with:
217217
fetch-depth: 2
218218
- name: Setup .NET

.github/workflows/qodana.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
pull-requests: write
1818
checks: write
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
2323
fetch-depth: 0 # a full history is required for pull request analysis

0 commit comments

Comments
 (0)