act icon indicating copy to clipboard operation
act copied to clipboard

Unexpected failure due to warning "Could not find any stages to run"

Open ericcornelissen opened this issue 2 years ago โ€ข 9 comments

Bug report info

act version:            0.2.50
GOOS:                   linux
GOARCH:                 amd64
NumCPU:                 16
Docker host:            unix:///run/user/1000/docker.sock
Sockets found:
        $XDG_RUNTIME_DIR/docker.sock
        $XDG_RUNTIME_DIR/podman/podman.sock
Config files:           
        /home/eric/.actrc:
                -P ubuntu-latest=catthehacker/ubuntu:act-latest
                -P ubuntu-22.04=catthehacker/ubuntu:act-22.04
                -P ubuntu-20.04=catthehacker/ubuntu:act-20.04
                -P ubuntu-18.04=catthehacker/ubuntu:act-18.04
        .actrc:
                # Check out act at: https://github.com/nektos/act

                --platform ubuntu-22.04=ghcr.io/catthehacker/ubuntu:act-22.04
                --quiet
                --use-gitignore
Build info:
        Go version:            go1.20.7
        Module path:           github.com/nektos/act
        Main version:          (devel)
        Main path:             github.com/nektos/act
        Main checksum:         
        Build settings:
                -buildmode:           exe
                -compiler:            gc
                -ldflags:             -s -w -X main.version=0.2.50 -X main.commit=80b0955303888742c3ab73af5758bb7b01f5f57c -X main.date=2023-09-01T02:12:50Z -X main.builtBy=goreleaser
                CGO_ENABLED:          0
                GOARCH:               amd64
                GOOS:                 linux
                GOAMD64:              v1
                vcs:                  git
                vcs.revision:         80b0955303888742c3ab73af5758bb7b01f5f57c
                vcs.time:             2023-09-01T02:12:28Z
                vcs.modified:         false
Docker Engine:
        Engine version:        24.0.5
        Engine runtime:        runc
        Cgroup version:        2
        Cgroup driver:         systemd
        Storage driver:        overlay2
        Registry URI:          https://index.docker.io/v1/
        OS:                    Ubuntu 22.04.3 LTS
        OS type:               linux
        OS version:            22.04
        OS arch:               x86_64
        OS kernel:             6.2.0-31-generic
        OS CPU:                16
        OS memory:             32028 MB
        Security options:
                name=seccomp,profile=builtin
                name=rootless
                name=cgroupns

Command used with act

Command:

act push --job test-e2e --dryrun

Additional configuration (.actrc):

# Check out act at: https://github.com/nektos/act

--platform ubuntu-22.04=ghcr.io/catthehacker/ubuntu:act-22.04
--quiet
--use-gitignore

Describe issue

I'm expected no error because:

  1. The exact same invocation works on v0.2.49
  2. Despite logging that the job couldn't be found, it seems to be running the job (and what it needs:) just fine.
  3. The job I'm trying to run is listed by act --list, see:
    Stage  Job ID                 Job name                               Workflow name  Workflow file  Events                    
    0      lint                   Lint                                   Check          check.yml      push,pull_request         
    0      secrets                Secrets                                Check          check.yml      pull_request,push         
    0      test-unit              Unit tests                             Check          check.yml      pull_request,push         
    0      validate-action-types  Action types                           Check          check.yml      pull_request,push         
    0      format                 Format                                 Check          check.yml      pull_request,push         
    0      tooling                Update tooling                         Nightly        nightly.yml    schedule,workflow_dispatch
    0      check                  Check                                  Publish        publish.yml    push                      
    0      initiate               Initiate                               Release        release.yml    workflow_dispatch         
    1      test-e2e               End-to-end tests (${{ matrix.name }})  Check          check.yml      pull_request,push         
    1      git                    git                                    Publish        publish.yml    push                      
    2      github                 GitHub                                 Publish        publish.yml    push                      
    

I also wasn't able to figure out if I was doing something wrong from the --help message.

Link to GitHub repository

https://github.com/ericcornelissen/git-tag-annotation-action

Workflow content

name: Check
on:
  pull_request: ~
  push:
    branches:
      - main
      - v2

permissions: read-all

jobs:
  format:
    name: Format
    runs-on: ubuntu-22.04
    steps:
      - name: Harden runner
        uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
        with:
          disable-sudo: true
          egress-policy: block
          allowed-endpoints: >
            api.github.com:443
            files.pythonhosted.org:443
            fulcio.sigstore.dev:443
            github.com:443
            gitlab.com:443
            objects.githubusercontent.com:443
            pypi.org:443
            rekor.sigstore.dev:443
            sigstore-tuf-root.storage.googleapis.com:443
            tuf-repo-cdn.sigstore.dev:443
      - name: Checkout repository
        uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
      - name: Install tooling
        uses: asdf-vm/actions/install@6a442392015fbbdd8b48696d41e0051b2698b2e4 # v2.2.0
      - name: Check formatting
        run: make format-check
  lint:
    name: Lint
    runs-on: ubuntu-22.04
    steps:
      - name: Harden runner
        uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
        with:
          disable-sudo: true
          egress-policy: block
          allowed-endpoints: >
            api.github.com:443
            files.pythonhosted.org:443
            fulcio.sigstore.dev:443
            github.com:443
            gitlab.com:443
            objects.githubusercontent.com:443
            pypi.org:443
            rekor.sigstore.dev:443
            sigstore-tuf-root.storage.googleapis.com:443
            tuf-repo-cdn.sigstore.dev:443
      - name: Checkout repository
        uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
      - name: Install tooling
        uses: asdf-vm/actions/install@6a442392015fbbdd8b48696d41e0051b2698b2e4 # v2.2.0
      - name: Lint CI workflows
        if: ${{ failure() || success() }}
        run: make lint-ci
      - name: Lint shell scripts
        if: ${{ failure() || success() }}
        run: make lint-sh
      - name: Lint YAML files
        if: ${{ failure() || success() }}
        run: make lint-yaml
  secrets:
    name: Secrets
    runs-on: ubuntu-22.04
    steps:
      - name: Harden runner
        uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
        with:
          disable-sudo: true
          egress-policy: block
          allowed-endpoints: >
            api.github.com:443
            artifactcache.actions.githubusercontent.com:443
            ghcr.io:443
            github.com:443
            objects.githubusercontent.com:443
            pkg-containers.githubusercontent.com:443
      - name: Checkout repository
        uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
        with:
          fetch-depth: 0
      - name: Scan for secrets
        uses: gitleaks/gitleaks-action@e7168103501562d92f3f52e2c69c253cff74438d # v2.3.1
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          GITLEAKS_ENABLE_COMMENTS: false
          GITLEAKS_ENABLE_UPLOAD_ARTIFACT: false
          GITLEAKS_ENABLE_SUMMARY: false
  test-unit:
    name: Unit tests
    runs-on: ubuntu-22.04
    steps:
      - name: Harden runner
        uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
        with:
          disable-sudo: true
          egress-policy: block
          allowed-endpoints: >
            api.github.com:443
            github.com:443
            objects.githubusercontent.com:443
      - name: Checkout repository
        uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
        with:
          fetch-depth: 0
      - name: Run tests
        run: make test
  test-e2e:
    name: End-to-end tests (${{ matrix.name }})
    runs-on: ${{ matrix.os }}
    needs:
      - test-unit
    strategy:
      fail-fast: false
      matrix:
        include:
          - name: MacOS
            os: macos-12
          - name: Ubuntu
            os: ubuntu-22.04
          - name: Windows
            os: windows-2022
    steps:
      - name: Harden runner
        uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
        with:
          disable-sudo: true
          egress-policy: block
          allowed-endpoints: >
            api.github.com:443
            github.com:443
            objects.githubusercontent.com:443
      - name: Checkout repository
        uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
        with:
          fetch-depth: 0
      - name: Run git-tag-annotation-action
        id: action-test
        uses: ./
        with:
          tag: v1.0.0
      - name: Check output
        shell: bash
        env:
          ACTUAL: ${{ steps.action-test.outputs.git-tag-annotation }}
          EXPECTED: |
            - Run the Action to get the git tag annotation of the current tag.
            - Run the Action to get the git tag annotation of a specified tag.
        run: |
          if [ "${ACTUAL}" != "${EXPECTED}" ]; then
            exit 1
          fi
  validate-action-types:
    name: Action types
    runs-on: ubuntu-22.04
    steps:
      - name: Harden runner
        uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
        with:
          disable-sudo: true
          egress-policy: block
          allowed-endpoints: >
            github.com:443
      - name: Checkout repository
        uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
      - name: Validate action types
        uses: krzema12/github-actions-typing@be99fa6195eeeec5aee1e87acca69087de0353ce # v1.0.1

Relevant log output

*DRYRUN* [Check/Unit tests] [DEBUG] evaluating expression 'success()'
*DRYRUN* [Check/Unit tests] [DEBUG] expression 'success()' evaluated to 'true'
*DRYRUN* [Check/Unit tests] ๐Ÿš€  Start image=ghcr.io/catthehacker/ubuntu:act-22.04
*DRYRUN* [Check/Unit tests]   ๐Ÿณ  docker pull image=ghcr.io/catthehacker/ubuntu:act-22.04 platform= username= forcePull=true
*DRYRUN* [Check/Unit tests] [DEBUG]   ๐Ÿณ  docker pull ghcr.io/catthehacker/ubuntu:act-22.04
*DRYRUN* [Check/Unit tests]   ๐Ÿณ  docker create image=ghcr.io/catthehacker/ubuntu:act-22.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
*DRYRUN* [Check/Unit tests]   ๐Ÿณ  docker run image=ghcr.io/catthehacker/ubuntu:act-22.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests]   โ˜  git clone 'https://github.com/step-security/harden-runner' # ref=8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/Unit tests] [DEBUG]   cloning https://github.com/step-security/harden-runner to /home/eric/.cache/act/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/Unit tests] [DEBUG] Unable to pull refs/heads/8ca2b8b2ece13480cda6dacd3511b49857a23c09: worktree contains unstaged changes
*DRYRUN* [Check/Unit tests] [DEBUG] Cloned https://github.com/step-security/harden-runner to /home/eric/.cache/act/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/Unit tests] [DEBUG] Checked out 8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/Unit tests] [DEBUG] Read action &{Harden Runner  Security agent for GitHub-hosted runner to monitor the build process map[allowed-endpoints:{Only these endpoints will be allowed if egress-policy is set to block false } disable-file-monitoring:{Disable file monitoring false false} disable-sudo:{Disable sudo access for the runner account false false} disable-telemetry:{Disable sending telemetry to StepSecurity API, can be set to true or false. This can only be set to true when egress-policy is set to block false false} egress-policy:{Policy for outbound traffic, can be either audit or block false block} policy:{Policy name to be used from the policy store false } token:{Used to avoid github rate limiting false ${{ github.token }}}] map[] {node16 map[] dist/index.js dist/pre/index.js always() dist/post/index.js always()   [] []} {green check-square}} from 'Unknown'
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.0.233:42385/ CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:8ca2b8b2ece13480cda6dacd3511b49857a23c09 GITHUB_ACTION_REPOSITORY:step-security/harden-runner GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-unit GITHUB_REF:refs/heads/tool-versions-updates GITHUB_REF_NAME:tool-versions-updates GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:ericcornelissen/git-tag-annotation-action GITHUB_REPOSITORY_OWNER:ericcornelissen GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:c34932abb036b81ce513f1bf2869af2cfb6fc7e4 GITHUB_TOKEN: GITHUB_WORKFLOW:Check GITHUB_WORKSPACE:/home/eric/workspace/git-tag-annotation-action INPUT_ALLOWED-ENDPOINTS:api.github.com:443 github.com:443 objects.githubusercontent.com:443
 INPUT_DISABLE-SUDO:true INPUT_EGRESS-POLICY:block ImageOS:ubuntu22 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] evaluating expression 'always()'
*DRYRUN* [Check/Unit tests] [DEBUG] expression 'always()' evaluated to 'true'
*DRYRUN* [Check/Unit tests] โญ Run Pre Harden runner
*DRYRUN* [Check/Unit tests] [DEBUG] run pre step for 'Harden runner'
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] expression '${{ github.token }}' rewritten to 'format('{0}', github.token)'
*DRYRUN* [Check/Unit tests] [DEBUG] evaluating expression 'format('{0}', github.token)'
*DRYRUN* [Check/Unit tests] [DEBUG] expression 'format('{0}', github.token)' evaluated to '%!t(string=)'
*DRYRUN* [Check/Unit tests] [DEBUG] Removing /home/eric/.cache/act/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09/.gitignore before docker cp
*DRYRUN* [Check/Unit tests] [DEBUG] /var/run/act/actions/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/Unit tests] [DEBUG] executing remote job container: [node /var/run/act/actions/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09/dist/pre/index.js]
*DRYRUN* [Check/Unit tests]   โœ…  Success - Pre Harden runner
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Skipping local actions/checkout because workdir was already copied
*DRYRUN* [Check/Unit tests] [DEBUG] skip pre step for 'Checkout repository': no action model available
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.0.233:42385/ CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:8ca2b8b2ece13480cda6dacd3511b49857a23c09 GITHUB_ACTION_REPOSITORY:step-security/harden-runner GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-unit GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/tool-versions-updates GITHUB_REF_NAME:tool-versions-updates GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:ericcornelissen/git-tag-annotation-action GITHUB_REPOSITORY_OWNER:ericcornelissen GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:c34932abb036b81ce513f1bf2869af2cfb6fc7e4 GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_TOKEN: GITHUB_WORKFLOW:Check GITHUB_WORKSPACE:/home/eric/workspace/git-tag-annotation-action INPUT_ALLOWED-ENDPOINTS:api.github.com:443 github.com:443 objects.githubusercontent.com:443
 INPUT_DISABLE-FILE-MONITORING:false INPUT_DISABLE-SUDO:true INPUT_DISABLE-TELEMETRY:false INPUT_EGRESS-POLICY:block INPUT_POLICY: INPUT_TOKEN: ImageOS:ubuntu22 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] evaluating expression ''
*DRYRUN* [Check/Unit tests] [DEBUG] expression '' evaluated to 'true'
*DRYRUN* [Check/Unit tests] โญ Run Main Harden runner
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] About to run action &{Harden Runner  Security agent for GitHub-hosted runner to monitor the build process map[allowed-endpoints:{Only these endpoints will be allowed if egress-policy is set to block false } disable-file-monitoring:{Disable file monitoring false false} disable-sudo:{Disable sudo access for the runner account false false} disable-telemetry:{Disable sending telemetry to StepSecurity API, can be set to true or false. This can only be set to true when egress-policy is set to block false false} egress-policy:{Policy for outbound traffic, can be either audit or block false block} policy:{Policy name to be used from the policy store false } token:{Used to avoid github rate limiting false ${{ github.token }}}] map[] {node16 map[] dist/index.js dist/pre/index.js always() dist/post/index.js always()   [] []} {green check-square}}
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] type=remote-action actionDir=/home/eric/.cache/act/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 actionPath= workdir=/home/eric/workspace/git-tag-annotation-action actionCacheDir=/home/eric/.cache/act actionName=step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 containerActionDir=/var/run/act/actions/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/Unit tests] [DEBUG] /var/run/act/actions/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/Unit tests] [DEBUG] executing remote job container: [node /var/run/act/actions/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09/dist/index.js]
*DRYRUN* [Check/Unit tests]   โœ…  Success - Main Harden runner
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Skipping local actions/checkout because workdir was already copied
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.0.233:42385/ CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:f43a0e5ff2bd294095638e18286ca9a3d1956744 GITHUB_ACTION_REPOSITORY:actions/checkout GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-unit GITHUB_REF:refs/heads/tool-versions-updates GITHUB_REF_NAME:tool-versions-updates GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:ericcornelissen/git-tag-annotation-action GITHUB_REPOSITORY_OWNER:ericcornelissen GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:c34932abb036b81ce513f1bf2869af2cfb6fc7e4 GITHUB_TOKEN: GITHUB_WORKFLOW:Check GITHUB_WORKSPACE:/home/eric/workspace/git-tag-annotation-action INPUT_FETCH-DEPTH:0 ImageOS:ubuntu22 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] evaluating expression ''
*DRYRUN* [Check/Unit tests] [DEBUG] expression '' evaluated to 'true'
*DRYRUN* [Check/Unit tests] โญ Run Main Checkout repository
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests]   โœ…  Success - Main Checkout repository
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.0.233:42385/ CI:true GITHUB_ACTION:2 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-unit GITHUB_REF:refs/heads/tool-versions-updates GITHUB_REF_NAME:tool-versions-updates GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:ericcornelissen/git-tag-annotation-action GITHUB_REPOSITORY_OWNER:ericcornelissen GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:c34932abb036b81ce513f1bf2869af2cfb6fc7e4 GITHUB_TOKEN: GITHUB_WORKFLOW:Check GITHUB_WORKSPACE:/home/eric/workspace/git-tag-annotation-action ImageOS:ubuntu22 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] evaluating expression ''
*DRYRUN* [Check/Unit tests] [DEBUG] expression '' evaluated to 'true'
*DRYRUN* [Check/Unit tests] โญ Run Main Run tests
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Wrote command

make test

 to 'workflow/2'
*DRYRUN* [Check/Unit tests]   โœ…  Success - Main Run tests
*DRYRUN* [Check/Unit tests] [DEBUG] skipping post step for 'Checkout repository': no action model available
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.0.233:42385/ CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:8ca2b8b2ece13480cda6dacd3511b49857a23c09 GITHUB_ACTION_REPOSITORY:step-security/harden-runner GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-unit GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/tool-versions-updates GITHUB_REF_NAME:tool-versions-updates GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:ericcornelissen/git-tag-annotation-action GITHUB_REPOSITORY_OWNER:ericcornelissen GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:c34932abb036b81ce513f1bf2869af2cfb6fc7e4 GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_TOKEN: GITHUB_WORKFLOW:Check GITHUB_WORKSPACE:/home/eric/workspace/git-tag-annotation-action INPUT_ALLOWED-ENDPOINTS:api.github.com:443 github.com:443 objects.githubusercontent.com:443
 INPUT_DISABLE-FILE-MONITORING:false INPUT_DISABLE-SUDO:true INPUT_DISABLE-TELEMETRY:false INPUT_EGRESS-POLICY:block INPUT_POLICY: INPUT_TOKEN: ImageOS:ubuntu22 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] evaluating expression 'always()'
*DRYRUN* [Check/Unit tests] [DEBUG] expression 'always()' evaluated to 'true'
*DRYRUN* [Check/Unit tests] โญ Run Post Harden runner
*DRYRUN* [Check/Unit tests] [DEBUG] run post step for 'Harden runner'
*DRYRUN* [Check/Unit tests] [DEBUG] executing remote job container: [node /var/run/act/actions/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09/dist/post/index.js]
*DRYRUN* [Check/Unit tests]   โœ…  Success - Post Harden runner
*DRYRUN* [Check/Unit tests] ๐Ÿ  Job succeeded
*DRYRUN* [Check/Unit tests] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/Unit tests] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/Unit tests] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/Unit tests] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (MacOS)-1  ] [DEBUG] evaluating expression 'success()'
*DRYRUN* [Check/End-to-end tests (Windows)-3] [DEBUG] evaluating expression 'success()'
*DRYRUN* [Check/End-to-end tests (MacOS)-1  ] [DEBUG] expression 'success()' evaluated to 'true'
*DRYRUN* [Check/End-to-end tests (MacOS)-1  ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (MacOS)-1  ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Windows)-3] [DEBUG] expression 'success()' evaluated to 'true'
*DRYRUN* [Check/End-to-end tests (MacOS)-1  ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=macos-12)'
*DRYRUN* [Check/End-to-end tests (Windows)-3] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (MacOS)-1  ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (MacOS)-1  ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Windows)-3] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Windows)-3] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=windows-2022)'
*DRYRUN* [Check/End-to-end tests (MacOS)-1  ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=macos-12)'
*DRYRUN* [Check/End-to-end tests (Windows)-3] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Windows)-3] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Windows)-3] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=windows-2022)'
*DRYRUN* [Check/End-to-end tests (Windows)-3] ๐Ÿšง  Skipping unsupported platform -- Try running with `-P windows-2022=...`
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'success()'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'success()' evaluated to 'true'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-22.04)'
*DRYRUN* [Check/End-to-end tests (MacOS)-1  ] ๐Ÿšง  Skipping unsupported platform -- Try running with `-P macos-12=...`
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-22.04)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-22.04)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] ๐Ÿš€  Start image=ghcr.io/catthehacker/ubuntu:act-22.04
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ]   ๐Ÿณ  docker pull image=ghcr.io/catthehacker/ubuntu:act-22.04 platform= username= forcePull=true
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG]   ๐Ÿณ  docker pull ghcr.io/catthehacker/ubuntu:act-22.04
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ]   ๐Ÿณ  docker create image=ghcr.io/catthehacker/ubuntu:act-22.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ]   ๐Ÿณ  docker run image=ghcr.io/catthehacker/ubuntu:act-22.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ]   โ˜  git clone 'https://github.com/step-security/harden-runner' # ref=8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG]   cloning https://github.com/step-security/harden-runner to /home/eric/.cache/act/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Unable to pull refs/heads/8ca2b8b2ece13480cda6dacd3511b49857a23c09: worktree contains unstaged changes
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Cloned https://github.com/step-security/harden-runner to /home/eric/.cache/act/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Checked out 8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Read action &{Harden Runner  Security agent for GitHub-hosted runner to monitor the build process map[allowed-endpoints:{Only these endpoints will be allowed if egress-policy is set to block false } disable-file-monitoring:{Disable file monitoring false false} disable-sudo:{Disable sudo access for the runner account false false} disable-telemetry:{Disable sending telemetry to StepSecurity API, can be set to true or false. This can only be set to true when egress-policy is set to block false false} egress-policy:{Policy for outbound traffic, can be either audit or block false block} policy:{Policy name to be used from the policy store false } token:{Used to avoid github rate limiting false ${{ github.token }}}] map[] {node16 map[] dist/index.js dist/pre/index.js always() dist/post/index.js always()   [] []} {green check-square}} from 'Unknown'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-22.04)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.0.233:42385/ CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:8ca2b8b2ece13480cda6dacd3511b49857a23c09 GITHUB_ACTION_REPOSITORY:step-security/harden-runner GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-e2e GITHUB_REF:refs/heads/tool-versions-updates GITHUB_REF_NAME:tool-versions-updates GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:ericcornelissen/git-tag-annotation-action GITHUB_REPOSITORY_OWNER:ericcornelissen GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:c34932abb036b81ce513f1bf2869af2cfb6fc7e4 GITHUB_TOKEN: GITHUB_WORKFLOW:Check GITHUB_WORKSPACE:/home/eric/workspace/git-tag-annotation-action INPUT_ALLOWED-ENDPOINTS:api.github.com:443 github.com:443 objects.githubusercontent.com:443
 INPUT_DISABLE-SUDO:true INPUT_EGRESS-POLICY:block ImageOS:ubuntu22 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'always()'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'always()' evaluated to 'true'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] โญ Run Pre Harden runner
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] run pre step for 'Harden runner'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '${{ github.token }}' rewritten to 'format('{0}', github.token)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'format('{0}', github.token)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'format('{0}', github.token)' evaluated to '%!t(string=)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Removing /home/eric/.cache/act/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09/.gitignore before docker cp
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] /var/run/act/actions/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] executing remote job container: [node /var/run/act/actions/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09/dist/pre/index.js]
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ]   โœ…  Success - Pre Harden runner
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Skipping local actions/checkout because workdir was already copied
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] skip pre step for 'Checkout repository': no action model available
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] ๐Ÿงช  Matrix: map[name:Ubuntu os:ubuntu-22.04]
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-22.04)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.0.233:42385/ CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:8ca2b8b2ece13480cda6dacd3511b49857a23c09 GITHUB_ACTION_REPOSITORY:step-security/harden-runner GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-e2e GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/tool-versions-updates GITHUB_REF_NAME:tool-versions-updates GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:ericcornelissen/git-tag-annotation-action GITHUB_REPOSITORY_OWNER:ericcornelissen GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:c34932abb036b81ce513f1bf2869af2cfb6fc7e4 GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_TOKEN: GITHUB_WORKFLOW:Check GITHUB_WORKSPACE:/home/eric/workspace/git-tag-annotation-action INPUT_ALLOWED-ENDPOINTS:api.github.com:443 github.com:443 objects.githubusercontent.com:443
 INPUT_DISABLE-FILE-MONITORING:false INPUT_DISABLE-SUDO:true INPUT_DISABLE-TELEMETRY:false INPUT_EGRESS-POLICY:block INPUT_POLICY: INPUT_TOKEN: ImageOS:ubuntu22 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression ''
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '' evaluated to 'true'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] โญ Run Main Harden runner
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] About to run action &{Harden Runner  Security agent for GitHub-hosted runner to monitor the build process map[allowed-endpoints:{Only these endpoints will be allowed if egress-policy is set to block false } disable-file-monitoring:{Disable file monitoring false false} disable-sudo:{Disable sudo access for the runner account false false} disable-telemetry:{Disable sending telemetry to StepSecurity API, can be set to true or false. This can only be set to true when egress-policy is set to block false false} egress-policy:{Policy for outbound traffic, can be either audit or block false block} policy:{Policy name to be used from the policy store false } token:{Used to avoid github rate limiting false ${{ github.token }}}] map[] {node16 map[] dist/index.js dist/pre/index.js always() dist/post/index.js always()   [] []} {green check-square}}
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-22.04)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] type=remote-action actionDir=/home/eric/.cache/act/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 actionPath= workdir=/home/eric/workspace/git-tag-annotation-action actionCacheDir=/home/eric/.cache/act actionName=step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 containerActionDir=/var/run/act/actions/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] /var/run/act/actions/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] executing remote job container: [node /var/run/act/actions/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09/dist/index.js]
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ]   โœ…  Success - Main Harden runner
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Skipping local actions/checkout because workdir was already copied
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-22.04)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.0.233:42385/ CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:f43a0e5ff2bd294095638e18286ca9a3d1956744 GITHUB_ACTION_REPOSITORY:actions/checkout GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-e2e GITHUB_REF:refs/heads/tool-versions-updates GITHUB_REF_NAME:tool-versions-updates GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:ericcornelissen/git-tag-annotation-action GITHUB_REPOSITORY_OWNER:ericcornelissen GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:c34932abb036b81ce513f1bf2869af2cfb6fc7e4 GITHUB_TOKEN: GITHUB_WORKFLOW:Check GITHUB_WORKSPACE:/home/eric/workspace/git-tag-annotation-action INPUT_FETCH-DEPTH:0 ImageOS:ubuntu22 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression ''
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '' evaluated to 'true'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] โญ Run Main Checkout repository
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ]   โœ…  Success - Main Checkout repository
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-22.04)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.0.233:42385/ CI:true GITHUB_ACTION:action-test GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-e2e GITHUB_REF:refs/heads/tool-versions-updates GITHUB_REF_NAME:tool-versions-updates GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:ericcornelissen/git-tag-annotation-action GITHUB_REPOSITORY_OWNER:ericcornelissen GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:c34932abb036b81ce513f1bf2869af2cfb6fc7e4 GITHUB_TOKEN: GITHUB_WORKFLOW:Check GITHUB_WORKSPACE:/home/eric/workspace/git-tag-annotation-action INPUT_TAG:v1.0.0 ImageOS:ubuntu22 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression ''
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '' evaluated to 'true'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] โญ Run Main Run git-tag-annotation-action
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ]   โœ…  Success - Main Run git-tag-annotation-action
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-22.04)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '${{ steps.action-test.outputs.git-tag-annotation }}' rewritten to 'format('{0}', steps.action-test.outputs.git-tag-annotation)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'format('{0}', steps.action-test.outputs.git-tag-annotation)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'format('{0}', steps.action-test.outputs.git-tag-annotation)' evaluated to '%!t(string=)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.0.233:42385/ ACTUAL: CI:true EXPECTED:- Run the Action to get the git tag annotation of the current tag.
- Run the Action to get the git tag annotation of a specified tag.
 GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-e2e GITHUB_REF:refs/heads/tool-versions-updates GITHUB_REF_NAME:tool-versions-updates GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:ericcornelissen/git-tag-annotation-action GITHUB_REPOSITORY_OWNER:ericcornelissen GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:c34932abb036b81ce513f1bf2869af2cfb6fc7e4 GITHUB_TOKEN: GITHUB_WORKFLOW:Check GITHUB_WORKSPACE:/home/eric/workspace/git-tag-annotation-action ImageOS:ubuntu22 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression ''
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '' evaluated to 'true'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] โญ Run Main Check output
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Wrote command

if [ "${ACTUAL}" != "${EXPECTED}" ]; then
  exit 1
fi


 to 'workflow/3.sh'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ]   โœ…  Success - Main Check output
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] skipping post step for 'Run git-tag-annotation-action': no action model available
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] skipping post step for 'Checkout repository': no action model available
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-22.04)'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.0.233:42385/ CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:8ca2b8b2ece13480cda6dacd3511b49857a23c09 GITHUB_ACTION_REPOSITORY:step-security/harden-runner GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-e2e GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/tool-versions-updates GITHUB_REF_NAME:tool-versions-updates GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:ericcornelissen/git-tag-annotation-action GITHUB_REPOSITORY_OWNER:ericcornelissen GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:c34932abb036b81ce513f1bf2869af2cfb6fc7e4 GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_TOKEN: GITHUB_WORKFLOW:Check GITHUB_WORKSPACE:/home/eric/workspace/git-tag-annotation-action INPUT_ALLOWED-ENDPOINTS:api.github.com:443 github.com:443 objects.githubusercontent.com:443
 INPUT_DISABLE-FILE-MONITORING:false INPUT_DISABLE-SUDO:true INPUT_DISABLE-TELEMETRY:false INPUT_EGRESS-POLICY:block INPUT_POLICY: INPUT_TOKEN: ImageOS:ubuntu22 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] evaluating expression 'always()'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] expression 'always()' evaluated to 'true'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] โญ Run Post Harden runner
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] run post step for 'Harden runner'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] executing remote job container: [node /var/run/act/actions/step-security-harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09/dist/post/index.js]
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ]   โœ…  Success - Post Harden runner
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] ๐Ÿ  Job succeeded
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Loading revision from git directory
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] HEAD points to 'c34932abb036b81ce513f1bf2869af2cfb6fc7e4'
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] using github ref: refs/heads/tool-versions-updates
*DRYRUN* [Check/End-to-end tests (Ubuntu)-2 ] [DEBUG] Found revision: c34932abb036b81ce513f1bf2869af2cfb6fc7e4

Additional information

  1. I'm experiencing this for all my projects where I use act, in addition to the repo above:
    • https://github.com/ericcornelissen/svgo-action
    • https://github.com/ericcornelissen/tool-versions-update-action
    • https://github.com/ericcornelissen/codecov-config-validator-action
  2. I suspect this is caused by https://github.com/nektos/act/pull/1970

ericcornelissen avatar Sep 05 '23 10:09 ericcornelissen

I can 100% reproduce this in v0.2.50, but not in v0.2.49. In v0.2.50 I see the warnings and errors:

# act --directory ../.. --env-file "" -g -j lint pull_request
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
 โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
 โ”‚ lint โ”‚
 โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ
Error: Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name

In v.0.2.49:

#  act --directory ../.. --env-file "" -g -j lint pull_request
 โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
 โ”‚ lint โ”‚
 โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ

INFO    ๏ธ๐Ÿ“ฃ A newer version of 'act' is available - consider ugrading to 0.2.50.

dannystaple avatar Sep 06 '23 11:09 dannystaple

Same here: 0.2.50 gives Error: Could not find any stages to run., 0.2.49 does not.

damarvin avatar Sep 16 '23 06:09 damarvin

I have the same error, but my workflows are running correctly anyway.

fharper avatar Sep 19 '23 18:09 fharper

I was able to resolve these warnings/errors by specifying the exact path to the job I was trying to run with the -W flag.

Command that produced errors โŒ

`act -j get_model_name -P ubuntu-18.04=nektos/act-environments-ubuntu:18.04 --pull=false

Output

~/Repo/projectX main โ‡ฃ4 *1 ?3 โฏ act -j get_model_name -P ubuntu-18.04=nektos/act-environments-ubuntu:18.04 --pull=false                                                                                                             11:07:57 AM
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
WARN[0000] Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name 
[Elijah Test/get_model_name] ๐Ÿš€  Start image=nektos/act-environments-ubuntu:18.04
[Elijah Test/get_model_name]   ๐Ÿณ  docker pull image=nektos/act-environments-ubuntu:18.04 platform= username= forcePull=false
[Elijah Test/get_model_name]   ๐Ÿณ  docker create image=nektos/act-environments-ubuntu:18.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[Elijah Test/get_model_name]   ๐Ÿณ  docker run image=nektos/act-environments-ubuntu:18.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[Elijah Test/get_model_name] โญ Run Main Checkout code
...
[Elijah Test/get_model_name]   โœ…  Success - Main Checkout code
[Elijah Test/get_model_name] โญ Run Main Query Model Name
[Elijah Test/get_model_name] โญ Run Main Query Model Name
[Elijah Test/get_model_name]   ๐Ÿณ  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/query-model-name-composite-query-model-name.sh] user= workdir=
...
[Elijah Test/get_model_name]   โœ…  Success - Main Query Model Name
[Elijah Test/get_model_name]   โš™  ::set-output:: version=X
[Elijah Test/get_model_name]   โœ…  Success - Main Query Model Name
[Elijah Test/get_model_name]   โš™  ::set-output:: MODEL_NAME=X
[Elijah Test/get_model_name] โญ Run Post Query Model Name
[Elijah Test/get_model_name]   โœ…  Success - Post Query Model Name
[Elijah Test/get_model_name] ๐Ÿ  Job succeeded
Error: Could not find any stages to run. View the valid jobs with `act --list`. Use `act --help` to find how to filter by Job ID/Workflow/Event Name

Command that resolved errors โœ…

act -j get_model_name -P ubuntu-18.04=nektos/act-environments-ubuntu:18.04 --pull=false -W .github/workflows/elijah-test.yaml

Output

~/Repo/projectX main โ‡ฃ4 *1 ?3 โฏ act -j get_model_name -P ubuntu-18.04=nektos/act-environments-ubuntu:18.04 --pull=false -W .github/workflows/elijah-test.yaml                                                                       11:11:20 AM
[Elijah Test/get_model_name] ๐Ÿš€  Start image=nektos/act-environments-ubuntu:18.04
[Elijah Test/get_model_name]   ๐Ÿณ  docker pull image=nektos/act-environments-ubuntu:18.04 platform= username= forcePull=false
[Elijah Test/get_model_name]   ๐Ÿณ  docker create image=nektos/act-environments-ubuntu:18.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[Elijah Test/get_model_name]   ๐Ÿณ  docker run image=nektos/act-environments-ubuntu:18.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[Elijah Test/get_model_name] โญ Run Main Checkout code
...
[Elijah Test/get_model_name]   โœ…  Success - Main Checkout code
[Elijah Test/get_model_name] โญ Run Main Query Model Name
[Elijah Test/get_model_name] โญ Run Main Query Model Name
[Elijah Test/get_model_name]   ๐Ÿณ  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/query-model-name-composite-query-model-name.sh] user= workdir=
...
[Elijah Test/get_model_name]   โœ…  Success - Main Query Model Name
[Elijah Test/get_model_name]   โš™  ::set-output:: version=X
[Elijah Test/get_model_name]   โœ…  Success - Main Query Model Name
[Elijah Test/get_model_name]   โš™  ::set-output:: MODEL_NAME=X
[Elijah Test/get_model_name] โญ Run Post Query Model Name
[Elijah Test/get_model_name]   โœ…  Success - Post Query Model Name
[Elijah Test/get_model_name] ๐Ÿ  Job succeeded

I didn't dive in too much further since this resolved my specific issues case, but I wonder if it has something to do with a mismatch local resources vs all jobs OR perhaps the warning about:

Detected multiple jobs with the same job name, use -W to specify the path to the specific workflow.

(This warning popped up for me when I ran act --list)

provEdgardoGutierrez avatar Sep 20 '23 18:09 provEdgardoGutierrez

This warning popped up for me when I ran act --list

Not for me, just when I run the job.

I was able to resolve these warnings/errors by specifying the exact path to the job I was trying to run with the -W flag.

Also working for me, not sure why as it was never required before, and as I mention previously, the job is running for me even with the warnings.

fharper avatar Sep 20 '23 18:09 fharper

Also working for me, not sure why as it was never required before, and as I mention previously, the job is running for me even with the warnings.

Yeah mine worked with the warnings too, but it annoyed me ๐Ÿ˜†

provEdgardoGutierrez avatar Sep 20 '23 18:09 provEdgardoGutierrez

Same here, for now I fixed my CI by pinning the version: gh extension install https://github.com/nektos/gh-act --pin v0.2.49

tigitlabs avatar Sep 25 '23 09:09 tigitlabs

I wanted to add that I'm also running into this issue on v0.2.51 - I don't know if I have much else to add. It's very frustrating.

Edit: I've also confirmed that I do not have this issue if I revert to v0.2.49

For anyone coming here using Homebrew, it's a PITA to now install specific versions of packages, for whatever reason. This is how I did it:

brew remove act
curl https://raw.githubusercontent.com/Homebrew/homebrew-core/89ef996d4027baecbce954b92e08a8f3bf221cee/Formula/act.rb > act.rb
brew install act.rb

andrewvaughan avatar Oct 03 '23 16:10 andrewvaughan

Still getting this on 0.2.54, solved by specifying the workflow file as suggested by @provEdgardoGutierrez.

Gives warnings:

gh act -j phplint -s GITHUB_TOKEN="$(gh auth token)"

Works normally:

gh act -j phplint -W .github/workflows/linter.yml -s GITHUB_TOKEN="$(gh auth token)"

SlimDeluxe avatar Nov 29 '23 07:11 SlimDeluxe