diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 9297ed7..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,14 +0,0 @@ -# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - -version: 2 -updates: - # Maintain dependencies for Github Actions - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - # Maintain dependencies for docker - - package-ecosystem: "docker" - directory: "/" - schedule: - interval: "weekly" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 6e5c332..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Publish kics GitHub Action - -# Run this workflow on Tags matching v* pattern and publish a new release -on: - push: - tags: - - 'v*' - -jobs: - publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: haya14busa/action-update-semver@v1 - with: - major_version_tag_only: true - - name: Create a Release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token - with: - tag_name: ${{ github.ref }} - release_name: ${{ github.ref }} diff --git a/.github/workflows/test_action.yaml b/.github/workflows/test_action.yaml deleted file mode 100644 index e59f360..0000000 --- a/.github/workflows/test_action.yaml +++ /dev/null @@ -1,26 +0,0 @@ -name: Test KICS action - -on: - workflow_dispatch: - pull_request: - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - run: mkdir -p myoutput - - name: Test KICS action - uses: ./ - with: - path: test/samples/positive1.tf,test/samples/positive2.tf - token: ${{ secrets.GITHUB_TOKEN }} - timeout: 60 - output_path: myoutput/ - output_formats: sarif - ignore_on_exit: results - enable_comments: true - comments_with_queries: true - excluded_column_for_comments_with_queries: "description_id,similarity_id,search_line,search_value,cis_description_id,cis_description_title,cis_description_text,cloud_provider" - - run: ls -la && ls -la myoutput - if: always()