From 7754d5a3c6b5796119eeefa21a138adbf7eb699c Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Thu, 27 Jun 2024 21:51:04 +0300 Subject: [PATCH 1/2] Delete .github/workflows/validate-codeowners.yml --- .github/workflows/validate-codeowners.yml | 29 ----------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/validate-codeowners.yml diff --git a/.github/workflows/validate-codeowners.yml b/.github/workflows/validate-codeowners.yml deleted file mode 100644 index 70f829e..0000000 --- a/.github/workflows/validate-codeowners.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Validate Codeowners -on: - workflow_dispatch: - - pull_request: - -jobs: - validate-codeowners: - runs-on: ubuntu-latest - steps: - - name: "Checkout source code at current commit" - uses: actions/checkout@v2 - - uses: mszostok/codeowners-validator@v0.7.1 - if: github.event.pull_request.head.repo.full_name == github.repository - name: "Full check of CODEOWNERS" - with: - # For now, remove "files" check to allow CODEOWNERS to specify non-existent - # files so we can use the same CODEOWNERS file for Terraform and non-Terraform repos - # checks: "files,syntax,owners,duppatterns" - checks: "syntax,owners,duppatterns" - owner_checker_allow_unowned_patterns: "false" - # GitHub access token is required only if the `owners` check is enabled - github_access_token: "${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}" - - uses: mszostok/codeowners-validator@v0.7.1 - if: github.event.pull_request.head.repo.full_name != github.repository - name: "Syntax check of CODEOWNERS" - with: - checks: "syntax,duppatterns" - owner_checker_allow_unowned_patterns: "false" From 13662d9826b2676669ecce5da56840286a333726 Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Thu, 27 Jun 2024 22:51:30 +0300 Subject: [PATCH 2/2] Python 3.7 depricated. Use 3.12 --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 8b177ac..74ef347 100644 --- a/variables.tf +++ b/variables.tf @@ -67,7 +67,7 @@ variable "skip_index_re" { variable "python_version" { type = string - default = "3.7" + default = "3.12" description = "The Python version to use" }