Skip to content

Commit 0f86c5c

Browse files
authored
Merge branch 'master' into simplified-mssql
2 parents 314eed5 + bf24661 commit 0f86c5c

File tree

24 files changed

+229
-64
lines changed

24 files changed

+229
-64
lines changed

.github/workflows/build-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
setupSuccessful: "true"
4242

4343
steps:
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
with:
4646
ref: ${{ github.event.pull_request.head.sha || github.event.after}}
4747

@@ -79,7 +79,7 @@ jobs:
7979
contents: read
8080
packages: write
8181
steps:
82-
- uses: actions/checkout@v5
82+
- uses: actions/checkout@v6
8383
with:
8484
ref: ${{ github.event.pull_request.head.sha || github.event.after}}
8585
- name: Set up Java for publishing to GitHub Repository

.github/workflows/build-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
setupSuccessful: "true"
2020

2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- name: Get Latest Merge Commit SHA
2424
id: get-sha
2525
run: |
@@ -43,7 +43,7 @@ jobs:
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4545
steps:
46-
- uses: actions/checkout@v5
46+
- uses: actions/checkout@v6
4747
- name: Set up Java for publishing to GitHub Repository
4848
uses: actions/setup-java@v5
4949
with:

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
unmodifiedBranchName: ${{ steps.get-branch-name.outputs.unmodifiedBranchName }}
3131

3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
with:
3535
ref: ${{ github.event.pull_request.head.sha || github.event.after}}
3636
- name: Get Latest Merge Commit SHA
@@ -90,7 +90,7 @@ jobs:
9090
runs-on: ubuntu-latest
9191
needs: [setup]
9292
steps:
93-
- uses: actions/checkout@v5
93+
- uses: actions/checkout@v6
9494
with:
9595
ref: ${{ github.event.pull_request.head.sha || github.event.after}}
9696
# this includes all the tar files included in the previous runs. So in the next step we deploy what was previously build

.github/workflows/codeql.yml

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

4242
steps:
4343
- name: Checkout repository
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545

4646
# Initializes the CodeQL tools for scanning.
4747
- name: Initialize CodeQL

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
runs-on: ubuntu-22.04
8989
steps:
9090

91-
- uses: actions/checkout@v5
91+
- uses: actions/checkout@v6
9292

9393
- name: Configure AWS credentials for vault access
9494
uses: aws-actions/configure-aws-credentials@v5
@@ -213,7 +213,7 @@ jobs:
213213
env:
214214
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
215215
steps:
216-
- uses: actions/checkout@v5
216+
- uses: actions/checkout@v6
217217

218218
- name: Configure AWS credentials for vault access
219219
uses: aws-actions/configure-aws-credentials@v5

.github/workflows/dry-run-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
needs: [setup, dry-run-create-release, dry-run-release-published]
182182
steps:
183183
- name: Checkout liquibase
184-
uses: actions/checkout@v5
184+
uses: actions/checkout@v6
185185

186186
- name: Set up Git
187187
run: |

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
# Checkout the code to the GitHub runner
2525
- name: Checkout Code
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727

2828
- name: Set up JDK
2929
uses: actions/setup-java@v5

.github/workflows/installer-build-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Build Installers
1515
runs-on: ubuntu-22.04
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818

1919
- name: Configure AWS credentials for vault access
2020
uses: aws-actions/configure-aws-credentials@v5

.github/workflows/release-deploy-xsd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
if: ${{ inputs.dry_run == false }}
3939
steps:
4040
- name: Download liquibase xsd
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242
with:
4343
# Relative path under $GITHUB_WORKSPACE to place the repository
4444
path: liquibase-core-repo

.github/workflows/release-publish-github-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-22.04
5757
if: ${{ inputs.dry_run == false }}
5858
steps:
59-
- uses: actions/checkout@v5
59+
- uses: actions/checkout@v6
6060

6161
- name: Set up Java for publishing to GitHub Repository
6262
uses: actions/setup-java@v5

0 commit comments

Comments
 (0)