From d10f4f24f10a388adfa6c15de2f6ef4094dc7854 Mon Sep 17 00:00:00 2001 From: Maksym Vlasov Date: Wed, 15 Jan 2025 00:46:28 +0200 Subject: [PATCH 1/9] chore(renovate): Require first upper letter in PR titles (#768) --- .github/renovate.json5 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 632adfd30..fd2ff0f9e 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,4 +1,6 @@ { $schema: "https://docs.renovatebot.com/renovate-schema.json", extends: ["local>SpotOnInc/renovate-config"], + // To make happy 'Validate PR title' GHA + commitMessageLowerCase: "never", } From 2928ff1676d4f371ebec9be02bcb2a10b2d44cae Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 01:23:19 +0200 Subject: [PATCH 2/9] chore(deps): Update docker/login-action action to v3.3.0 (#765) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/build-image.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-image.yaml b/.github/workflows/build-image.yaml index ebc2e8911..77d92a35b 100644 --- a/.github/workflows/build-image.yaml +++ b/.github/workflows/build-image.yaml @@ -24,7 +24,7 @@ jobs: uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 - name: Login to GitHub Container Registry # yamllint disable-line rule:line-length - uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0 + uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 with: registry: ghcr.io username: ${{ github.repository_owner }} From bfa8822bde1f132b57f57d5b8cdb30c975ef1ca8 Mon Sep 17 00:00:00 2001 From: Maksym Vlasov Date: Wed, 15 Jan 2025 02:05:17 +0200 Subject: [PATCH 3/9] ci: Avoid reaching GH limits on MacOS runners (#769) We are hit limits for how many runs on MacOS runners can be run, just by creation 10 renovate PRs and fix twise issues in half of them ~= 20 new PRs/commits for check Each commit trigger 10 MacOS runs, which means that limit is aproximatly ~200 MacOS runs per hour. I didn't find such limits in offical docs, btw https://docs.github.com/en/actions/administering-github-actions/usage-limits-billing-and-administration#usage-limits --- .github/renovate.json5 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index fd2ff0f9e..4e54aed92 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -3,4 +3,6 @@ extends: ["local>SpotOnInc/renovate-config"], // To make happy 'Validate PR title' GHA commitMessageLowerCase: "never", + // Disable auto-rebase on every commit to avoid reaching Github limits on macos runners + rebaseWhen: "conflicted", } From 20706321184a5568e9d8f788e103451cbe6d4bcc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 02:15:25 +0200 Subject: [PATCH 4/9] chore(deps): Update docker/setup-qemu-action action to v3.3.0 (#767) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Maksym Vlasov --- .github/workflows/build-image-test.yaml | 2 +- .github/workflows/build-image.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-image-test.yaml b/.github/workflows/build-image-test.yaml index 7c43a42f5..fa866159f 100644 --- a/.github/workflows/build-image-test.yaml +++ b/.github/workflows/build-image-test.yaml @@ -35,7 +35,7 @@ jobs: - name: Set up QEMU if: matrix.os != 'ubuntu-latest' || matrix.arch != 'amd64' # yamllint disable-line rule:line-length - uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 + uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0 with: platforms: arm64 diff --git a/.github/workflows/build-image.yaml b/.github/workflows/build-image.yaml index 77d92a35b..98b992692 100644 --- a/.github/workflows/build-image.yaml +++ b/.github/workflows/build-image.yaml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Set up QEMU # yamllint disable-line rule:line-length - uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 + uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0 - name: Set up Docker Buildx # yamllint disable-line rule:line-length uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 From a1677c7ae10d4d1ce23b7013049ccca4c988887c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 02:40:18 +0200 Subject: [PATCH 5/9] chore(deps): Update docker/setup-buildx-action action to v3.8.0 (#766) --- .github/workflows/build-image-test.yaml | 2 +- .github/workflows/build-image.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-image-test.yaml b/.github/workflows/build-image-test.yaml index fa866159f..91f527d3a 100644 --- a/.github/workflows/build-image-test.yaml +++ b/.github/workflows/build-image-test.yaml @@ -41,7 +41,7 @@ jobs: - name: Set up Docker Buildx # yamllint disable-line rule:line-length - uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 + uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 - name: Build if Dockerfile changed if: steps.changed-files-specific.outputs.any_changed == 'true' diff --git a/.github/workflows/build-image.yaml b/.github/workflows/build-image.yaml index 98b992692..aaf925f2b 100644 --- a/.github/workflows/build-image.yaml +++ b/.github/workflows/build-image.yaml @@ -21,7 +21,7 @@ jobs: uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0 - name: Set up Docker Buildx # yamllint disable-line rule:line-length - uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 + uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 - name: Login to GitHub Container Registry # yamllint disable-line rule:line-length uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 @@ -39,7 +39,7 @@ jobs: - name: Set up Docker Buildx # yamllint disable-line rule:line-length - uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 + uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 - name: Build and Push release if: github.event_name != 'schedule' From 1e656c9a1231f02b37dcb2ff7d07415ca74d3fed Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 02:47:34 +0200 Subject: [PATCH 6/9] chore(deps): Update docker/build-push-action action to v6.11.0 (#764) --- .github/workflows/build-image-test.yaml | 4 ++-- .github/workflows/build-image.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-image-test.yaml b/.github/workflows/build-image-test.yaml index 91f527d3a..ee5dedc83 100644 --- a/.github/workflows/build-image-test.yaml +++ b/.github/workflows/build-image-test.yaml @@ -46,7 +46,7 @@ jobs: - name: Build if Dockerfile changed if: steps.changed-files-specific.outputs.any_changed == 'true' # yamllint disable-line rule:line-length - uses: docker/build-push-action@94f8f8c2eec4bc3f1d78c1755580779804cb87b2 # v6.0.1 + uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6.11.0 with: context: . build-args: | @@ -88,7 +88,7 @@ jobs: && matrix.os == 'ubuntu-latest' && matrix.arch == 'amd64' # yamllint disable-line rule:line-length - uses: docker/build-push-action@94f8f8c2eec4bc3f1d78c1755580779804cb87b2 # v6.0.1 + uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6.11.0 with: context: . build-args: | diff --git a/.github/workflows/build-image.yaml b/.github/workflows/build-image.yaml index aaf925f2b..0148886b2 100644 --- a/.github/workflows/build-image.yaml +++ b/.github/workflows/build-image.yaml @@ -44,7 +44,7 @@ jobs: - name: Build and Push release if: github.event_name != 'schedule' # yamllint disable-line rule:line-length - uses: docker/build-push-action@94f8f8c2eec4bc3f1d78c1755580779804cb87b2 # v6.0.1 + uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6.11.0 with: context: . build-args: | @@ -62,7 +62,7 @@ jobs: - name: Build and Push nightly if: github.event_name == 'schedule' # yamllint disable-line rule:line-length - uses: docker/build-push-action@94f8f8c2eec4bc3f1d78c1755580779804cb87b2 # v6.0.1 + uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6.11.0 with: context: . build-args: | From 2fb51a13bc6ce06b4abcc19dac9612bf830b0ae7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 02:55:20 +0200 Subject: [PATCH 7/9] chore(deps): Update codecov/codecov-action action to v4.6.0 (#763) --- .github/workflows/reusable-tox.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable-tox.yml b/.github/workflows/reusable-tox.yml index bcd1a2182..95d9356d4 100644 --- a/.github/workflows/reusable-tox.yml +++ b/.github/workflows/reusable-tox.yml @@ -367,7 +367,8 @@ jobs: if: >- !cancelled() && steps.tox-run.outputs.cov-report-files != '' - uses: codecov/codecov-action@v4 + # yamllint disable-line rule:line-length + uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0 with: disable_search: true fail_ci_if_error: >- From 43b89a795602c03d021b99e4ff1b3bb5fefa5485 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 03:02:32 +0200 Subject: [PATCH 8/9] chore(deps): Update actions/upload-artifact action to v4.6.0 (#762) --- .github/workflows/ci-cd.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 4f05785af..7f2e27458 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -359,7 +359,8 @@ jobs: >> "${GITHUB_OUTPUT}" working-directory: dist - name: Store the distribution packages - uses: actions/upload-artifact@v4 + # yamllint disable-line rule:line-length + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: >- ${{ needs.pre-setup.outputs.dists-artifact-name }} From ed4757f8c1b1b1f07b484460318890cc56b583a1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 03:10:49 +0200 Subject: [PATCH 9/9] chore(deps): Update actions/setup-python action to v5.3.0 (#761) --- .github/workflows/ci-cd.yml | 6 ++++-- .github/workflows/pre-commit.yaml | 2 +- .github/workflows/reusable-tox.yml | 3 ++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 7f2e27458..a2f4e7a6a 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -106,7 +106,8 @@ jobs: steps: - name: Switch to using Python 3.13 by default - uses: actions/setup-python@v5 + # yamllint disable-line rule:line-length + uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 with: python-version: 3.13 - name: Check out src from Git @@ -268,7 +269,8 @@ jobs: steps: - name: Switch to using Python 3.13 - uses: actions/setup-python@v5 + # yamllint disable-line rule:line-length + uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 with: python-version: 3.13 diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index ab6337910..450bd476f 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -50,7 +50,7 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} # Skip terraform_tflint which interferes to commit pre-commit auto-fixes # yamllint disable-line rule:line-length - - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 + - uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 with: python-version: '3.9' - name: Execute pre-commit diff --git a/.github/workflows/reusable-tox.yml b/.github/workflows/reusable-tox.yml index 95d9356d4..6a9fe67ac 100644 --- a/.github/workflows/reusable-tox.yml +++ b/.github/workflows/reusable-tox.yml @@ -155,7 +155,8 @@ jobs: Switch to using Python v${{ inputs.python-version }} by default id: python-install - uses: actions/setup-python@v5 + # yamllint disable-line rule:line-length + uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 with: python-version: ${{ inputs.python-version }}