diff --git a/.github/workflows/code-analysis-built-module.yml b/.github/workflows/code-analysis-built-module.yml index c1fc288cd..5a584ccae 100644 --- a/.github/workflows/code-analysis-built-module.yml +++ b/.github/workflows/code-analysis-built-module.yml @@ -18,7 +18,7 @@ jobs: #actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install GitVersion diff --git a/.github/workflows/code-analysis.yml b/.github/workflows/code-analysis.yml index 35dc8bf8c..8e5cbe14e 100644 --- a/.github/workflows/code-analysis.yml +++ b/.github/workflows/code-analysis.yml @@ -18,7 +18,7 @@ jobs: #actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install GitVersion diff --git a/CHANGELOG.md b/CHANGELOG.md index a672e045c..27836fc00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,7 +56,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Now returns a PSModuleInfo object instead of just the module name. - `Import-SqlDscPreferredModule` - Handles PSModuleInfo objects from `Get-SqlDscPreferredModule` instead of strings. - - Sets -ErrorAction 'Stop' on Get-SqlDscPreferredModule to throw an error if no SQL module is found. The script-terminating error is caught and made into a statement-terminating error. + - Sets -ErrorAction 'Stop' on Get-SqlDscPreferredModule to throw an error if + no SQL module is found. The script-terminating error is caught and made into + a statement-terminating error. + - Bump GitHub Action Checkout to v4. ### Remove