From ee2fdf3d214d0cf7724452850090092800b4d857 Mon Sep 17 00:00:00 2001 From: "repo-jeeves[bot]" <106431701+repo-jeeves[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 15:23:31 -0400 Subject: [PATCH 1/3] chore(deps): pin dependencies (#3262) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/create-github-app-token](https://togithub.com/actions/create-github-app-token) | action | pinDigest | -> `f2acddf` | | [actions/labeler](https://togithub.com/actions/labeler) | action | pinDigest | -> `8558fd7` | | [peter-evans/create-issue-from-file](https://togithub.com/peter-evans/create-issue-from-file) | action | pinDigest | -> `24452a7` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). Co-authored-by: repo-jeeves[bot] <106431701+repo-jeeves[bot]@users.noreply.github.com> --- .github/workflows/link-checker.yaml | 2 +- .github/workflows/meta-labeler.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/link-checker.yaml b/.github/workflows/link-checker.yaml index 3f38bd0bb3..2ed1cc31dd 100644 --- a/.github/workflows/link-checker.yaml +++ b/.github/workflows/link-checker.yaml @@ -66,7 +66,7 @@ jobs: echo "${issue_number}" - name: Create or Update Issue - uses: peter-evans/create-issue-from-file@v5 + uses: peter-evans/create-issue-from-file@24452a72d85239eacf1468b0f1982a9f3fec4c94 # v5 with: token: "${{ steps.app-token.outputs.token }}" title: "${{ env.WORKFLOW_ISSUE_TITLE }}" diff --git a/.github/workflows/meta-labeler.yaml b/.github/workflows/meta-labeler.yaml index 4bd3a88d8b..0260c434a6 100644 --- a/.github/workflows/meta-labeler.yaml +++ b/.github/workflows/meta-labeler.yaml @@ -16,7 +16,7 @@ jobs: pull-requests: write steps: - name: Generate Token - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@f2acddfb5195534d487896a656232b016a682f3c # v1 id: app-token with: app-id: "${{ secrets.BOT_APP_ID }}" @@ -28,7 +28,7 @@ jobs: token: "${{ steps.app-token.outputs.token }}" - name: Labeler - uses: actions/labeler@v5 + uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5 with: repo-token: "${{ steps.app-token.outputs.token }}" configuration-path: .github/labeler.yaml From 2cfdd762103d4834c2b33fdf9d29fe1df0d7a373 Mon Sep 17 00:00:00 2001 From: Scotte Zinn Date: Mon, 18 Mar 2024 15:29:59 -0400 Subject: [PATCH 2/3] ci: Remove lint checker --- .github/workflows/lint.yaml | 66 ------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 .github/workflows/lint.yaml diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml deleted file mode 100644 index 9928430974..0000000000 --- a/.github/workflows/lint.yaml +++ /dev/null @@ -1,66 +0,0 @@ ---- -# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json -name: Lint - -on: # yamllint disable-line rule:truthy - workflow_dispatch: - pull_request: - branches: - - main - -concurrency: - group: ${{ github.ref }}-${{ github.workflow }} - cancel-in-progress: true - -jobs: - build: - name: MegaLinter - runs-on: ubuntu-latest - steps: - - name: Generate Token - uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 - id: app-token - with: - app_id: "${{ secrets.BOT_APP_ID }}" - private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" - - - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - with: - token: "${{ steps.app-token.outputs.token }}" - fetch-depth: 0 - - - name: MegaLinter - uses: oxsecurity/megalinter@a7a0163b6c8ff7474a283d99a706e27483ddd80f # v7.10.0 - env: - GITHUB_TOKEN: "${{ steps.app-token.outputs.token }}" - PRINT_ALPACA: false - VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'workflow_dispatch' }} - ENABLE_LINTERS: |- - ${{ - join( - fromJSON(' - [ - "ACTION_ACTIONLINT", - "COPYPASTE_JSCPD", - "KUBERNETES_KUBEVAL", - "MARKDOWN_MARKDOWNLINT", - "REPOSITORY_GIT_DIFF", - "REPOSITORY_SECRETLINT", - "TERRAFORM_TERRAFORM_FMT", - "YAML_PRETTIER", - "YAML_YAMLLINT" - ] - '), - ',' - ) - }} - COPYPASTE_JSCPD_CONFIG_FILE: .github/linters/jscpd/jscpd.json - KUBERNETES_DIRECTORY: kubernetes - KUBERNETES_KUBEVAL_ARGUMENTS: --ignore-missing-schemas - KUBERNETES_KUBEVAL_FILTER_REGEX_INCLUDE: "(kubernetes)" - MARKDOWN_MARKDOWNLINT_CONFIG_FILE: .github/linters/markdownlint/.markdownlint.yaml - MARKDOWN_MARKDOWNLINT_RULES_PATH: .github/ - REPOSITORY_SECRETLINT_CONFIG_FILE: .github/linters/secretlint/.secretlintrc.json - YAML_YAMLLINT_CONFIG_FILE: .github/linters/yamllint/.yamllint.yaml - YAML_PRETTIER_CONFIG_FILE: .github/linters/prettier/.prettierrc.yaml From e4aabc0960d8a52019c5733bfeeb7c5f5883b007 Mon Sep 17 00:00:00 2001 From: "repo-jeeves[bot]" <106431701+repo-jeeves[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 19:31:26 +0000 Subject: [PATCH 3/3] =?UTF-8?q?fix(helm):=20update=20loki=20(=205.44.3=20?= =?UTF-8?q?=E2=86=92=205.44.4=20)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit | datasource | package | from | to | | ---------- | ------- | ------ | ------ | | helm | loki | 5.44.3 | 5.44.4 | --- kubernetes/main/apps/monitoring/loki/app/helm-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubernetes/main/apps/monitoring/loki/app/helm-release.yaml b/kubernetes/main/apps/monitoring/loki/app/helm-release.yaml index fb0e59569b..0101165e85 100644 --- a/kubernetes/main/apps/monitoring/loki/app/helm-release.yaml +++ b/kubernetes/main/apps/monitoring/loki/app/helm-release.yaml @@ -9,7 +9,7 @@ spec: chart: spec: chart: loki - version: 5.44.3 + version: 5.44.4 sourceRef: kind: HelmRepository name: grafana-charts