From 9f0235174295dff1bde2680c8c2acb88afe45cd5 Mon Sep 17 00:00:00 2001 From: Ben <43026681+bwp91@users.noreply.github.com> Date: Fri, 22 Sep 2023 03:00:03 +0100 Subject: [PATCH] main -> latest --- .github/workflows/build.yml | 2 +- .github/workflows/codeql-analysis.yml | 6 +++--- CONTRIBUTING.md | 2 +- src/modules/plugins/plugins.service.ts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 351f5dac2..739692878 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -86,6 +86,6 @@ jobs: lint: needs: build_and_test - uses: homebridge/.github/.github/workflows/eslint.yml@main + uses: homebridge/.github/.github/workflows/eslint.yml@latest with: install_cmd: npm ci && cd ui && npm ci diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a7af70ba6..a3faf80d9 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -2,12 +2,12 @@ name: "CodeQL" on: push: - branches: [ main, beta* ] + branches: [ latest, beta* ] pull_request: - branches: [ main, beta* ] + branches: [ latest, beta* ] schedule: - cron: '17 9 * * 2' jobs: analyze: - uses: homebridge/.github/.github/workflows/codeql-analysis.yml@main + uses: homebridge/.github/.github/workflows/codeql-analysis.yml@latest diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8601e6e22..5fc4d4168 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -72,4 +72,4 @@ npm run test Additional language translations, or improvements to existing translations are most welcome. Translations can be found here: -https://github.com/homebridge/homebridge-config-ui-x/tree/main/ui/src/i18n +https://github.com/homebridge/homebridge-config-ui-x/tree/latest/ui/src/i18n diff --git a/src/modules/plugins/plugins.service.ts b/src/modules/plugins/plugins.service.ts index fe4ee5777..510e81b7f 100755 --- a/src/modules/plugins/plugins.service.ts +++ b/src/modules/plugins/plugins.service.ts @@ -1404,7 +1404,7 @@ export class PluginsService { clearTimeout(this.verifiedPluginsRetryTimeout); try { this.verifiedPlugins = ( - await this.httpService.get('https://raw.githubusercontent.com/homebridge/verified/main/verified-plugins.json', { + await this.httpService.get('https://raw.githubusercontent.com/homebridge/verified/latest/verified-plugins.json', { httpsAgent: null, }).toPromise() ).data;