Skip to content

Commit 6c67926

Browse files
authored
Merge branch 'master' into renovate/actions-cache-4.x
2 parents ad5b23c + 87b9f80 commit 6c67926

File tree

6 files changed

+27
-17
lines changed

6 files changed

+27
-17
lines changed

.github/renovate.json5

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
22
$schema: "https://docs.renovatebot.com/renovate-schema.json",
33
extends: ["local>SpotOnInc/renovate-config"],
4+
// To make happy 'Validate PR title' GHA
5+
commitMessageLowerCase: "never",
6+
// Disable auto-rebase on every commit to avoid reaching Github limits on macos runners
7+
rebaseWhen: "conflicted",
48
}

.github/workflows/build-image-test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,18 @@ jobs:
3535
- name: Set up QEMU
3636
if: matrix.os != 'ubuntu-latest' || matrix.arch != 'amd64'
3737
# yamllint disable-line rule:line-length
38-
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0
38+
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0
3939
with:
4040
platforms: arm64
4141

4242
- name: Set up Docker Buildx
4343
# yamllint disable-line rule:line-length
44-
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
44+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
4545

4646
- name: Build if Dockerfile changed
4747
if: steps.changed-files-specific.outputs.any_changed == 'true'
4848
# yamllint disable-line rule:line-length
49-
uses: docker/build-push-action@94f8f8c2eec4bc3f1d78c1755580779804cb87b2 # v6.0.1
49+
uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6.11.0
5050
with:
5151
context: .
5252
build-args: |
@@ -88,7 +88,7 @@ jobs:
8888
&& matrix.os == 'ubuntu-latest'
8989
&& matrix.arch == 'amd64'
9090
# yamllint disable-line rule:line-length
91-
uses: docker/build-push-action@94f8f8c2eec4bc3f1d78c1755580779804cb87b2 # v6.0.1
91+
uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6.11.0
9292
with:
9393
context: .
9494
build-args: |

.github/workflows/build-image.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1919
- name: Set up QEMU
2020
# yamllint disable-line rule:line-length
21-
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0
21+
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0
2222
- name: Set up Docker Buildx
2323
# yamllint disable-line rule:line-length
24-
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
24+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
2525
- name: Login to GitHub Container Registry
2626
# yamllint disable-line rule:line-length
27-
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
27+
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
2828
with:
2929
registry: ghcr.io
3030
username: ${{ github.repository_owner }}
@@ -39,12 +39,12 @@ jobs:
3939
4040
- name: Set up Docker Buildx
4141
# yamllint disable-line rule:line-length
42-
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
42+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
4343

4444
- name: Build and Push release
4545
if: github.event_name != 'schedule'
4646
# yamllint disable-line rule:line-length
47-
uses: docker/build-push-action@94f8f8c2eec4bc3f1d78c1755580779804cb87b2 # v6.0.1
47+
uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6.11.0
4848
with:
4949
context: .
5050
build-args: |
@@ -62,7 +62,7 @@ jobs:
6262
- name: Build and Push nightly
6363
if: github.event_name == 'schedule'
6464
# yamllint disable-line rule:line-length
65-
uses: docker/build-push-action@94f8f8c2eec4bc3f1d78c1755580779804cb87b2 # v6.0.1
65+
uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6.11.0
6666
with:
6767
context: .
6868
build-args: |

.github/workflows/ci-cd.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ jobs:
106106

107107
steps:
108108
- name: Switch to using Python 3.13 by default
109-
uses: actions/setup-python@v5
109+
# yamllint disable-line rule:line-length
110+
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
110111
with:
111112
python-version: 3.13
112113
- name: Check out src from Git
@@ -269,7 +270,8 @@ jobs:
269270

270271
steps:
271272
- name: Switch to using Python 3.13
272-
uses: actions/setup-python@v5
273+
# yamllint disable-line rule:line-length
274+
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
273275
with:
274276
python-version: 3.13
275277

@@ -361,7 +363,8 @@ jobs:
361363
>> "${GITHUB_OUTPUT}"
362364
working-directory: dist
363365
- name: Store the distribution packages
364-
uses: actions/upload-artifact@v4
366+
# yamllint disable-line rule:line-length
367+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
365368
with:
366369
name: >-
367370
${{ needs.pre-setup.outputs.dists-artifact-name }}

.github/workflows/pre-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
ref: ${{ github.event.pull_request.head.sha }}
5151
# Skip terraform_tflint which interferes to commit pre-commit auto-fixes
5252
# yamllint disable-line rule:line-length
53-
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
53+
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
5454
with:
5555
python-version: '3.9'
5656
- name: Execute pre-commit

.github/workflows/reusable-tox.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,8 @@ jobs:
155155
Switch to using Python v${{ inputs.python-version }}
156156
by default
157157
id: python-install
158-
uses: actions/setup-python@v5
158+
# yamllint disable-line rule:line-length
159+
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
159160
with:
160161
python-version: ${{ inputs.python-version }}
161162
@@ -265,7 +266,8 @@ jobs:
265266
- name: Download all the dists
266267
if: >-
267268
contains(fromJSON('["metadata-validation", "pytest"]'), inputs.toxenv)
268-
uses: actions/download-artifact@v4
269+
# yamllint disable-line rule:line-length
270+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
269271
with:
270272
name: ${{ inputs.dists-artifact-name }}
271273
path: dist/
@@ -369,7 +371,8 @@ jobs:
369371
if: >-
370372
!cancelled()
371373
&& steps.tox-run.outputs.cov-report-files != ''
372-
uses: codecov/codecov-action@v4
374+
# yamllint disable-line rule:line-length
375+
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
373376
with:
374377
disable_search: true
375378
fail_ci_if_error: >-

0 commit comments

Comments
 (0)