Skip to content

Commit a16c86d

Browse files
authored
Merge pull request #9 from unixorn/release-contributions
Release 0.3.0
2 parents 3f5a899 + e14efb6 commit a16c86d

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
# Use `allow` to specify which dependencies to maintain
3+
4+
version: 2
5+
updates:
6+
- package-ecosystem: "github-actions"
7+
directory: "/"
8+
schedule:
9+
interval: "weekly"
10+
11+
- package-ecosystem: "pip"
12+
directory: "/"
13+
schedule:
14+
interval: "weekly"

.github/workflows/mega-linter.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,13 @@ jobs:
4848
# Run Linter against code base #
4949
################################
5050
- name: Lint Code Base
51-
uses: nvuillam/mega-linter@v5
51+
uses: nvuillam/mega-linter@v7
5252
env:
5353
VALIDATE_ALL_CODEBASE: false
5454
DEFAULT_BRANCH: main
5555
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56-
DISABLE_LINTERS: SPELL_CSPELL,MARKDOWN_MARKDOWN_LINK_CHECK,PYTHON_BANDIT
56+
REPOSITORY_KICS_DISABLE_ERRORS: true
57+
DISABLE_LINTERS: SPELL_CSPELL,MARKDOWN_MARKDOWN_LINK_CHECK,PYTHON_BANDIT,REPOSITORY_CHECKOV,REPOSITORY_TRIVY,REPOSITORY_GRYPE,SPELL_LYCHEE
5758

5859
# Upload Mega-Linter artifacts. They will be available on Github action page "Artifacts" section
5960
- name: Archive production artifacts

gitlike_commands/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
__version__ = "0.2.1"
1817

1918
from shutil import which
2019
import os
2120
import subprocess
2221
import sys
22+
from importlib import metadata
23+
24+
__version__ = metadata.version(__package__)
2325

2426

2527
def is_program(name):

0 commit comments

Comments
 (0)