Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failure with error saying entrypoint.ps1 is not found #12

Open
sheldonhull opened this issue Sep 28, 2020 · 1 comment
Open

Failure with error saying entrypoint.ps1 is not found #12

sheldonhull opened this issue Sep 28, 2020 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@sheldonhull
Copy link

Description

I plugged this most excellent of super duper linters into a github action workflow without any alteration. The result failed with the error listed below.

docker: Error response from daemon: OCI runtime create failed: container_linux.go:370: starting container process caused: exec: "./entrypoint.ps1": stat ./entrypoint.ps1: no such file or directory: unknown.

Reproduce

The github action layout I used was similar to this:

name: 'Run Pull Request Update Checks'
on:
  pull_request:
    types:
      - opened
      - reopened
      - edited
      - synchronize

defaults:
  run:
    shell: pwsh
    working-directory: .
jobs:
  github-pr:
    name: Linting
    runs-on: ubuntu-latest
    steps:
      - uses: actions/labeler@v2
        name: Auto Label
        with:
          repo-token: "${{ secrets.GITHUB_TOKEN }}"
      - uses: aslafy-z/conventional-pr-title-action@master
        name:  'Validate Title Adheres to Conventional Commit Format'
        with:
          success-state: Title follows the specification.
          failure-state: Title does not follow the specification.
          context-name: conventional-pr-title
          preset: conventional-changelog-angular@latest
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  run-linting:
    name: 'Apply FMT & Scan For Secrets'
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0 # don't use shallow fetch as I'm trying to commit and push back up changed files to the main
          # token: ${{ secrets.GITHUB_TOKEN }}
      - name: Super Duper Linter
        uses: JustinGrote/Super-Duper-Linter@preview
@sheldonhull sheldonhull added the bug Something isn't working label Sep 28, 2020
@JustinGrote
Copy link
Owner

Thanks for the report, it may be a bit before I have time to investigate but I do have it flagged. Keep in mind at the moment this is still "proof of concept" status and not production grade.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants