Skip to content

Commit 56a0f85

Browse files
authored
Merge branch 'master' into coderabit_config
2 parents 5436252 + 02c4072 commit 56a0f85

20 files changed

+108
-171
lines changed

.codecov.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
---
2-
31
codecov:
42
notify:
53
after_n_builds: 21 # Number of test matrix+lint jobs uploading coverage
@@ -50,5 +48,3 @@ github_checks:
5048
# Annotations are deprecated in Codecov because they are misleading.
5149
# Ref: https://github.com/codecov/codecov-action/issues/1710
5250
annotations: false
53-
54-
...

.github/.container-structure-test-config.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
---
2-
31
schemaVersion: 2.0.0
42

53
commandTests:
@@ -137,7 +135,6 @@ commandTests:
137135

138136
fileExistenceTests:
139137
- name: terrascan init
140-
# yamllint disable-line rule:line-length
141138
path: >-
142139
/root/.terrascan/pkg/policies/opa/rego/github/github_repository/privateRepoEnabled.rego
143140
shouldExist: true

.github/.dive-ci.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
---
2-
31
rules:
42
# If the efficiency is measured below X%, mark as failed.
53
# Expressed as a ratio between 0-1.

.github/FUNDING.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
---
2-
31
github: [antonbabenko]
42
custom: https://www.paypal.me/antonbabenko

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
---
2-
31
name: Build Dockerfile if changed and run smoke tests
42

53
on:
@@ -40,7 +38,6 @@ jobs:
4038

4139
- name: Get changed Docker related files
4240
id: changed-files-specific
43-
# yamllint disable-line rule:line-length
4441
uses: tj-actions/changed-files@d6e91a2266cdb9d62096cebf1e8546899c6aa18f # v45.0.6
4542
with:
4643
files: |
@@ -59,13 +56,11 @@ jobs:
5956
>> $GITHUB_ENV
6057
6158
- name: Set up Docker Buildx
62-
# yamllint disable-line rule:line-length
6359
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
6460
if: steps.changed-files-specific.outputs.any_changed == 'true'
6561

6662
- name: Build if Dockerfile changed
6763
if: steps.changed-files-specific.outputs.any_changed == 'true'
68-
# yamllint disable-line rule:line-length
6964
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0
7065
with:
7166
context: .
@@ -105,7 +100,6 @@ jobs:
105100
106101
- name: Dive - check image for waste files
107102
if: steps.changed-files-specific.outputs.any_changed == 'true'
108-
# yamllint disable-line rule:line-length
109103
uses: MaxymVlasov/dive-action@b6a02b38f0f309e8817199658eab090d4f0f93ce # v1.1.0
110104
with:
111105
image: ${{ env.IMAGE }}
@@ -118,7 +112,6 @@ jobs:
118112
if: >-
119113
steps.changed-files-specific.outputs.any_changed == 'true'
120114
&& matrix.os == 'ubuntu-latest'
121-
# yamllint disable-line rule:line-length
122115
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0
123116
with:
124117
context: .

.github/workflows/build-image.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
---
2-
31
name: Publish container image
42

53
on:
@@ -24,10 +22,8 @@ jobs:
2422
- name: Checkout code
2523
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2624
- name: Set up Docker Buildx
27-
# yamllint disable-line rule:line-length
2825
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
2926
- name: Login to GitHub Container Registry
30-
# yamllint disable-line rule:line-length
3127
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
3228
with:
3329
registry: ghcr.io
@@ -47,12 +43,10 @@ jobs:
4743
run: >-
4844
echo "IMAGE_REPO=ghcr.io/${GITHUB_REPOSITORY@L}" >> $GITHUB_ENV
4945
- name: Set up Docker Buildx
50-
# yamllint disable-line rule:line-length
5146
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
5247

5348
- name: Build and Push release
5449
if: github.event_name != 'schedule'
55-
# yamllint disable-line rule:line-length
5650
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0
5751
with:
5852
context: .
@@ -70,7 +64,6 @@ jobs:
7064
7165
- name: Build and Push nightly
7266
if: github.event_name == 'schedule'
73-
# yamllint disable-line rule:line-length
7467
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0
7568
with:
7669
context: .

.github/workflows/ci-cd.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
---
2-
31
name: 🧪
42

53
on:
@@ -109,12 +107,10 @@ jobs:
109107

110108
steps:
111109
- name: Switch to using Python 3.13 by default
112-
# yamllint disable-line rule:line-length
113110
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
114111
with:
115112
python-version: 3.13
116113
- name: Check out src from Git
117-
# yamllint disable-line rule:line-length
118114
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
119115
with:
120116
fetch-depth: 0
@@ -167,7 +163,6 @@ jobs:
167163
echo "dir=$(python -m pip cache dir)" >> "${GITHUB_OUTPUT}"
168164
shell: bash
169165
- name: Set up pip cache
170-
# yamllint disable-line rule:line-length
171166
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
172167
with:
173168
path: ${{ steps.pip-cache-dir.outputs.dir }}
@@ -274,13 +269,11 @@ jobs:
274269

275270
steps:
276271
- name: Switch to using Python 3.13
277-
# yamllint disable-line rule:line-length
278272
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
279273
with:
280274
python-version: 3.13
281275

282276
- name: Grab the source from Git
283-
# yamllint disable-line rule:line-length
284277
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
285278
with:
286279
fetch-depth: 0
@@ -309,7 +302,6 @@ jobs:
309302
run: >-
310303
echo "dir=$(python -m pip cache dir)" >> "${GITHUB_OUTPUT}"
311304
- name: Set up pip cache
312-
# yamllint disable-line rule:line-length
313305
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
314306
with:
315307
path: ${{ steps.pip-cache-dir.outputs.dir }}
@@ -375,7 +367,6 @@ jobs:
375367
>> "${GITHUB_OUTPUT}"
376368
working-directory: dist
377369
- name: Store the distribution packages
378-
# yamllint disable-line rule:line-length
379370
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
380371
with:
381372
name: >-
@@ -522,9 +513,6 @@ jobs:
522513

523514
steps:
524515
- name: Decide whether the needed jobs succeeded or failed
525-
# yamllint disable-line rule:line-length
526516
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
527517
with:
528518
jobs: ${{ toJSON(needs) }}
529-
530-
...

.github/workflows/codeql.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
---
21
# For most projects, this workflow file will not need changing; you simply need
32
# to commit it to your repository.
43
#
@@ -47,7 +46,6 @@ jobs:
4746

4847
# Initializes the CodeQL tools for scanning.
4948
- name: Initialize CodeQL
50-
# yamllint disable-line rule:line-length
5149
uses: github/codeql-action/init@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
5250
with:
5351
languages: ${{ matrix.language }}
@@ -60,7 +58,6 @@ jobs:
6058
# If this step fails, then you should remove it and run the build
6159
# manually (see below)
6260
- name: Autobuild
63-
# yamllint disable-line rule:line-length
6461
uses: github/codeql-action/autobuild@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
6562

6663
# ℹ️ Command-line programs to run using the OS shell.
@@ -76,7 +73,6 @@ jobs:
7673
# ./location_of_script_within_repo/buildscript.sh
7774

7875
- name: Perform CodeQL Analysis
79-
# yamllint disable-line rule:line-length
8076
uses: github/codeql-action/analyze@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
8177
with:
8278
category: /language:${{matrix.language}}

.github/workflows/dependency-review.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
---
2-
31
# Dependency Review Action
42
#
53
# This Action will scan dependency manifest files that change as part of a
@@ -22,8 +20,6 @@ jobs:
2220
runs-on: ubuntu-latest
2321
steps:
2422
- name: Checkout Repository
25-
# yamllint disable-line rule:line-length
2623
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2724
- name: Dependency Review
28-
# yamllint disable-line rule:line-length
2925
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0

.github/workflows/pr-title.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
---
2-
31
name: Validate PR title
42

53
on:
@@ -25,7 +23,6 @@ jobs:
2523
steps:
2624
# Please look up the latest version from
2725
# https://github.com/amannn/action-semantic-pull-request/releases
28-
# yamllint disable-line rule:line-length
2926
- uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5.5.3
3027
env:
3128
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)