Skip to content

Commit 5a2bdc7

Browse files
Bump actions/checkout from 4.1.7 to 4.2.0 (#306)
* Bump actions/checkout from 4.1.7 to 4.2.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.1.7...v4.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Update sqlserver-unit.yml * Update README.md * Update sqlserver-unit.yml --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: John McCall <[email protected]>
1 parent 1e10e83 commit 5a2bdc7

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

.github/workflows/artifacts.yml

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

3030
steps:
3131
- name: Check out code
32-
uses: actions/checkout@v4.1.7
32+
uses: actions/checkout@v4.2.0
3333
with:
3434
repository: ${{ github.event.pull_request.head.repo.full_name }}
3535
ref: ${{ github.event.pull_request.head.ref }}

.github/workflows/azuresql-unit.yml

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

3737
steps:
3838
- name: Check out code
39-
uses: actions/checkout@v4.1.7
39+
uses: actions/checkout@v4.2.0
4040
with:
4141
path: ""
4242

.github/workflows/lint.yml

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

1616
steps:
1717
- name: Checkout Code
18-
uses: actions/checkout@v4.1.7
18+
uses: actions/checkout@v4.2.0
1919
with:
2020
# Full git history is needed to get a proper list of changed files within `super-linter`
2121
fetch-depth: 0

.github/workflows/sqlserver-unit.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,10 @@ jobs:
4444
sql_server:
4545
- 2022
4646
- 2019
47-
- 2017
4847

4948
steps:
5049
- name: Check out code
51-
uses: actions/checkout@v4.1.7
50+
uses: actions/checkout@v4.2.0
5251
with:
5352
path: ""
5453
ref: ${{ github.head_ref }}
@@ -110,8 +109,8 @@ jobs:
110109
- name: Upload sp_doc sample artifact
111110
uses: actions/upload-artifact@v4
112111
with:
113-
name: sp_doc-sample
114-
path: "${{ env.SAMPLE_DATABASE }}-${{ matrix.sql_server}}.md"
112+
name: sp_doc-sample-${{ matrix.sql_server }}
113+
path: "${{ env.SAMPLE_DATABASE }}-${{ matrix.sql_server }}.md"
115114

116115
# Only do cov report on latest SQL Server version
117116
- name: Produce the coverage report

docs/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ Only support for versions that are still in [mainstream][mainstream] support is
4141
| AWS RDS SQL Server * | :question: |
4242
| SQL Server 2022 | :heavy_check_mark: |
4343
| SQL Server 2019 | :heavy_check_mark: |
44-
| SQL Server 2017 | :heavy_check_mark: |
45-
| SQL Server 2014-2016 | :shrug: |
44+
| SQL Server 2014-2017 | :shrug: |
4645
| <= SQL Server 2012 | :x: |
4746

4847
\* AWS RDS SQL Server is not tested, but should work *in theory*. YMMV.

0 commit comments

Comments
 (0)