diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index aade37b4ab72d4..c2bcf01bde57da 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -37,7 +37,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@f6e388ebf0efc915c6c5b165b019ee61a6746a38 # v2.20.1 + uses: github/codeql-action/init@004c5de30b6423267685b897a3d595e944f7fed5 # v2.20.2 with: languages: javascript @@ -47,7 +47,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@f6e388ebf0efc915c6c5b165b019ee61a6746a38 # v2.20.1 + uses: github/codeql-action/autobuild@004c5de30b6423267685b897a3d595e944f7fed5 # v2.20.2 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -61,4 +61,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@f6e388ebf0efc915c6c5b165b019ee61a6746a38 # v2.20.1 + uses: github/codeql-action/analyze@004c5de30b6423267685b897a3d595e944f7fed5 # v2.20.2 diff --git a/lib/workers/repository/update/pr/changelog/api.ts b/lib/workers/repository/update/pr/changelog/api.ts index 435173c38543c9..3abff281931f37 100644 --- a/lib/workers/repository/update/pr/changelog/api.ts +++ b/lib/workers/repository/update/pr/changelog/api.ts @@ -1,7 +1,7 @@ import { BitbucketChangeLogSource } from './bitbucket/source'; import { GitHubChangeLogSource } from './github/source'; +import { GitLabChangeLogSource } from './gitlab/source'; import type { ChangeLogSource } from './source'; -import { GitLabChangeLogSource } from './source-gitlab'; const api = new Map(); export default api; diff --git a/lib/workers/repository/update/pr/changelog/source-gitlab.ts b/lib/workers/repository/update/pr/changelog/gitlab/source.ts similarity index 79% rename from lib/workers/repository/update/pr/changelog/source-gitlab.ts rename to lib/workers/repository/update/pr/changelog/gitlab/source.ts index 4279dc1dfd6574..4dc86c3b996a72 100644 --- a/lib/workers/repository/update/pr/changelog/source-gitlab.ts +++ b/lib/workers/repository/update/pr/changelog/gitlab/source.ts @@ -1,5 +1,5 @@ -import type { BranchUpgradeConfig } from '../../../../types'; -import { ChangeLogSource } from './source'; +import type { BranchUpgradeConfig } from '../../../../../types'; +import { ChangeLogSource } from '../source'; export class GitLabChangeLogSource extends ChangeLogSource { constructor() { diff --git a/package.json b/package.json index db209d3b1ab335..6e37cf9043f963 100644 --- a/package.json +++ b/package.json @@ -233,7 +233,7 @@ "semver-stable": "3.0.0", "semver-utils": "1.1.4", "shlex": "2.1.2", - "simple-git": "3.19.0", + "simple-git": "3.19.1", "slugify": "1.6.6", "source-map-support": "0.5.21", "traverse": "0.6.7", diff --git a/yarn.lock b/yarn.lock index c6fdc41d92233c..e11d0920a8d028 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9942,10 +9942,10 @@ sigstore@^1.0.0, sigstore@^1.3.0: make-fetch-happen "^11.0.1" tuf-js "^1.1.3" -simple-git@3.19.0: - version "3.19.0" - resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.19.0.tgz#fe8d0cd86a0e68372b75c0c44a0cb887201c3f7d" - integrity sha512-hyH2p9Ptxjf/xPuL7HfXbpYt9gKhC1yWDh3KYIAYJJePAKV7AEjLN4xhp7lozOdNiaJ9jlVvAbBymVlcS2jRiA== +simple-git@3.19.1: + version "3.19.1" + resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.19.1.tgz#ff9c021961a3d876a1b115b1893bed9a28855d30" + integrity sha512-Ck+rcjVaE1HotraRAS8u/+xgTvToTuoMkT9/l9lvuP5jftwnYUp6DwuJzsKErHgfyRk8IB8pqGHWEbM3tLgV1w== dependencies: "@kwsites/file-exists" "^1.1.1" "@kwsites/promise-deferred" "^1.1.1"