Skip to content

Commit 12d144e

Browse files
authored
Topic/beta build (#61)
* update actions * update actions * update actions
1 parent 4bbcee2 commit 12d144e

File tree

6 files changed

+21
-14
lines changed

6 files changed

+21
-14
lines changed

.github/linters/.ecrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"Verbose": false,
33
"Debug": false,
44
"IgnoreDefaults": false,
5-
"SpacesAftertabs": false,
5+
"SpacesAfterTabs": false,
66
"NoColor": false,
77
"exclude": [
8-
".git",
9-
".vscode"
8+
".git",
9+
".vscode"
1010
],
1111
"AllowedContentTypes": [],
1212
"PassedFiles": [],

.github/linters/.python-lint

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,5 +468,4 @@ valid-metaclass-classmethod-first-arg=mcs
468468

469469
# Exceptions that will emit a warning when being caught. Defaults to
470470
# "Exception"
471-
overgeneral-exceptions=builtins.BaseException,
472-
builtins.Exception
471+
overgeneral-exceptions=builtins.BaseException, builtins.Exception

.github/workflows/lint.yaml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Lint Code Base
3-
on:
3+
"on":
44
push:
55
branches:
66
- "**" # All branches
@@ -20,14 +20,22 @@ jobs:
2020
lint:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
2626
- name: Super-Linter
27-
uses: super-linter/super-linter/slim@v5
27+
uses: super-linter/super-linter/slim@v7
2828
env:
2929
VALIDATE_ALL_CODEBASE: false
3030
DEFAULT_BRANCH: develop
3131
GITHUB_TOKEN: ${{ github.token }}
3232
VALIDATE_PYTHON_FLAKE8: false
3333
VALIDATE_PYTHON_MYPY: false
34+
VALIDATE_PYTHON_PYINK: false
35+
VALIDATE_CHECKOV: false
36+
VALIDATE_YAML_PRETTIER: false
37+
VALIDATE_JSON_PRETTIER: false
38+
VALIDATE_MARKDOWN_PRETTIER: false
39+
FIX_MARKDOWN_PRETTIER: false
40+
FIX_YAML_PRETTIER: false
41+
FIX_JSON_PRETTIER: false

.github/workflows/pr-target-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Correct PR Branch Check
3-
on:
3+
"on":
44
pull_request:
55
branches:
66
- "main"
@@ -22,7 +22,7 @@ jobs:
2222
# if it is, comment on the PR and close it.
2323
# and set the check as failed.
2424
- name: Check PR Branch
25-
uses: actions/github-script@v6
25+
uses: actions/github-script@v7
2626
with:
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
2828
script: |

.github/workflows/publish-beta.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Docker Build Publish Beta
3-
on:
3+
"on":
44
push:
55
branches:
66
- '**'
@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: Build and Push GHCR
5454
id: docker_build
55-
uses: docker/build-push-action@v5
55+
uses: docker/build-push-action@v6
5656
with:
5757
provenance: false
5858
push: true

.github/workflows/publish-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Docker Build Publish
3-
on:
3+
"on":
44
push:
55
branches:
66
- develop
@@ -70,7 +70,7 @@ jobs:
7070

7171
- name: Build and Push GHCR
7272
id: docker_build
73-
uses: docker/build-push-action@v4
73+
uses: docker/build-push-action@v5
7474
with:
7575
provenance: false
7676
push: true

0 commit comments

Comments
 (0)