Skip to content

Commit 3b31744

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 72dbaa9 commit 3b31744

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
@@ -69,7 +69,7 @@ jobs:
6969
psql --version
7070
Write-Host "Active .NET SDK: $(dotnet --version)"
7171
- name: Git checkout
72-
uses: actions/checkout@v3
72+
uses: actions/checkout@v4
7373
- name: Restore tools
7474
run: |
7575
dotnet tool restore
@@ -158,7 +158,7 @@ jobs:
158158
contents: read
159159
steps:
160160
- name: Git checkout
161-
uses: actions/checkout@v3
161+
uses: actions/checkout@v4
162162
- name: Setup .NET
163163
uses: actions/setup-dotnet@v3
164164
with:
@@ -209,7 +209,7 @@ jobs:
209209
contents: read
210210
steps:
211211
- name: Git checkout
212-
uses: actions/checkout@v3
212+
uses: actions/checkout@v4
213213
with:
214214
fetch-depth: 2
215215
- 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)