Skip to content

Commit 334af28

Browse files
authored
Merge branch 'cqfn:master' into 683
2 parents 759c426 + a792e1f commit 334af28

1,003 files changed

Lines changed: 1787 additions & 1582 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.0pdd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2019-2025 Aibolit
1+
# SPDX-FileCopyrightText: Copyright (c) 2019-2026 Aibolit
22
# SPDX-License-Identifier: MIT
33
---
44
errors:

.github/workflows/actionlint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2019-2025 Aibolit
1+
# SPDX-FileCopyrightText: Copyright (c) 2019-2026 Aibolit
22
# SPDX-License-Identifier: MIT
33
---
44
# yamllint disable rule:line-length
@@ -15,7 +15,7 @@ jobs:
1515
timeout-minutes: 15
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- name: Download actionlint
2020
id: get_actionlint
2121
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)

.github/workflows/bashate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2019-2025 Aibolit
1+
# SPDX-FileCopyrightText: Copyright (c) 2019-2026 Aibolit
22
# SPDX-License-Identifier: MIT
33
---
44
# yamllint disable rule:line-length
@@ -15,7 +15,7 @@ jobs:
1515
timeout-minutes: 15
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- uses: actions/setup-python@v6
2020
with:
2121
python-version: 3.11

.github/workflows/bibcop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2019-2025 Aibolit
1+
# SPDX-FileCopyrightText: Copyright (c) 2019-2026 Aibolit
22
# SPDX-License-Identifier: MIT
33
---
44
# yamllint disable rule:line-length
@@ -15,5 +15,5 @@ jobs:
1515
timeout-minutes: 15
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- uses: yegor256/bibcop-action@0.0.4

.github/workflows/checkmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2019-2025 Aibolit
1+
# SPDX-FileCopyrightText: Copyright (c) 2019-2026 Aibolit
22
# SPDX-License-Identifier: MIT
33
---
44
# yamllint disable rule:line-length
@@ -15,5 +15,5 @@ jobs:
1515
timeout-minutes: 15
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- uses: Uno-Takashi/checkmake-action@v2

.github/workflows/codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2019-2025 Aibolit
1+
# SPDX-FileCopyrightText: Copyright (c) 2019-2026 Aibolit
22
# SPDX-License-Identifier: MIT
33
---
44
# yamllint disable rule:line-length
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
- name: Set up Python 3.11
2121
uses: actions/setup-python@v6
2222
with:

.github/workflows/copyrights.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2019-2025 Aibolit
1+
# SPDX-FileCopyrightText: Copyright (c) 2019-2026 Aibolit
22
# SPDX-License-Identifier: MIT
33
---
44
# yamllint disable rule:line-length
@@ -15,5 +15,5 @@ jobs:
1515
timeout-minutes: 15
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- uses: yegor256/copyrights-action@0.0.12

.github/workflows/docker-hub.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# SPDX-FileCopyrightText: Copyright (c) 2019-2026 Aibolit
2+
# SPDX-License-Identifier: MIT
3+
---
4+
name: docker-hub
5+
6+
# yamllint disable rule:line-length
7+
on:
8+
push:
9+
branches:
10+
- master
11+
12+
concurrency:
13+
group: docker-hub-${{ github.ref }}
14+
cancel-in-progress: true
15+
16+
jobs:
17+
docker:
18+
name: Publish Docker image
19+
runs-on: ubuntu-24.04
20+
permissions:
21+
checks: read
22+
contents: read
23+
steps:
24+
- uses: actions/checkout@v6
25+
- name: Set up Docker Buildx
26+
uses: docker/setup-buildx-action@v3
27+
- name: Extract metadata for Docker
28+
id: meta
29+
uses: docker/metadata-action@v5
30+
with:
31+
images: ${{ secrets.DOCKER_USERNAME }}/aibolit-image
32+
tags: |
33+
type=raw,value=latest
34+
type=sha,prefix=sha-
35+
- name: Login to Docker Hub
36+
uses: docker/login-action@v3
37+
with:
38+
username: ${{ secrets.DOCKER_USERNAME }}
39+
password: ${{ secrets.DOCKER_TOKEN }}
40+
- name: Build and push
41+
uses: docker/build-push-action@v6
42+
with:
43+
context: .
44+
file: ./Dockerfile
45+
push: true
46+
tags: ${{ steps.meta.outputs.tags }}
47+
labels: ${{ steps.meta.outputs.labels }}

.github/workflows/e2e-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2019-2025 Aibolit
1+
# SPDX-FileCopyrightText: Copyright (c) 2019-2026 Aibolit
22
# SPDX-License-Identifier: MIT
33
---
44
# yamllint disable rule:line-length
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020

2121
- name: Setup Python
2222
uses: actions/setup-python@v6

.github/workflows/flake8.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2019-2025 Aibolit
1+
# SPDX-FileCopyrightText: Copyright (c) 2019-2026 Aibolit
22
# SPDX-License-Identifier: MIT
33
---
44
# yamllint disable rule:line-length
@@ -15,7 +15,7 @@ jobs:
1515
timeout-minutes: 15
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- uses: actions/setup-python@v6
2020
with:
2121
python-version: 3.11

0 commit comments

Comments
 (0)