nektos / act

Run your GitHub Actions locally πŸš€
https://nektosact.com
MIT License
51.94k stars 1.31k forks source link

PNPM self installer fails #1995

Open SomeAspy opened 9 months ago

SomeAspy commented 9 months ago

Bug report info

act version:            0.2.54
GOOS:                   linux
GOARCH:                 amd64
NumCPU:                 16
Docker host:            DOCKER_HOST environment variable is not set
Sockets found:
  /var/run/docker.sock
Config files:           
  /root/.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
Build info:
  Go version:            go1.21.4
  Module path:           github.com/nektos/act
  Main version:          (devel)
  Main path:             github.com/nektos/act
  Main checksum:         
  Build settings:
        -buildmode:           pie
        -compiler:            gc
        -trimpath:            true
        DefaultGODEBUG:       panicnil=1
        CGO_ENABLED:          1
        GOARCH:               amd64
        GOOS:                 linux
        GOAMD64:              v1
        vcs:                  git
        vcs.revision:         8daeaeff8f613aea9650c7ffdd10853489150a9e
        vcs.time:             2023-11-17T18:31:59Z
        vcs.modified:         true
Docker Engine:
  Engine version:        24.0.7
  Engine runtime:        runc
  Cgroup version:        2
  Cgroup driver:         systemd
  Storage driver:        overlay2
  Registry URI:          https://index.docker.io/v1/
  OS:                    Arch Linux
  OS type:               linux
  OS version:            
  OS arch:               x86_64
  OS kernel:             6.6.1-arch1-1
  OS CPU:                16
  OS memory:             64220 MB
  Security options:
        name=seccomp,profile=builtin
        name=cgroupns

Command used with act

`act`

Describe issue

Attempting to use PNPM seems to result in

[Lint/Run linters]   ❓  ::group::Running self-installer...
|  WARN  GET https://registry.npmjs.org/pnpm error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
|  WARN  GET https://registry.npmjs.org/pnpm error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
|  ERR_PNPM_META_FETCH_FAIL  GET https://registry.npmjs.org/pnpm: Value of "this" must be of type URLSearchParams
[Lint/Run linters]   ❓  ::endgroup::
[Lint/Run linters]   ❗  ::error::Something went wrong, self-installer exits with code 1
| Installation Completed!
[Lint/Run linters]   ❌  Failure - Main pnpm/action-setup@v2

May or may not be related to https://github.com/pnpm/pnpm/issues/6424?

Link to GitHub repository

No response

Workflow content

name: Lint

on:
    push:
        branches:
            - '*'
    pull_request:
        branches:
            - '*'

jobs:
    run-linters:
        name: Run linters
        runs-on: ubuntu-latest

        steps:
            - name: Check out Git repository
              uses: actions/checkout@v2

            - name: Set up Node.js
              uses: actions/setup-node@v3
              with:
                  node-version: 20

            - uses: pnpm/action-setup@v2
              with:
                  version: latest

            - name: Install Node.js dependencies
              run: pnpm install

            - name: Run linters
              run: pnpm run lint

Relevant log output

DEBU[0000] Loading environment from /home/aiden/Documents/repos/aocr/.env 
DEBU[0000] Loading action inputs from /home/aiden/Documents/repos/aocr/.input 
DEBU[0000] Loading secrets from /home/aiden/Documents/repos/aocr/.secrets 
DEBU[0000] Loading vars from /home/aiden/Documents/repos/aocr/.vars 
DEBU[0000] Evaluated matrix inclusions: map[]           
DEBU[0000] Loading workflows from '/home/aiden/Documents/repos/aocr/.github/workflows' 
DEBU[0000] Loading workflows recursively                
DEBU[0000] Found workflow 'lint.yml' in '/home/aiden/Documents/repos/aocr/.github/workflows/lint.yml' 
DEBU[0000] Reading workflow '/home/aiden/Documents/repos/aocr/.github/workflows/lint.yml' 
DEBU[0000] Conditional GET for notices etag=7e6403df-3da5-4c09-96d2-f13a82ea337c 
DEBU[0000] Preparing plan with all jobs                 
DEBU[0000] Using default workflow event: push           
DEBU[0000] Planning jobs for event: push                
DEBU[0000] gc: 2023-11-20 20:17:01.785138126 -0500 EST m=+0.003297268  module=artifactcache
DEBU[0000] Plan Stages: [0xc0003a0528]                  
DEBU[0000] Stages Runs: [Run linters]                   
DEBU[0000] Job.Name: Run linters                        
DEBU[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    14 18} 
DEBU[0000] Job.Env: {0 0    <nil> []    0 0}            
DEBU[0000] Job.If: {0 0  success()  <nil> []    0 0}    
DEBU[0000] Job.Steps: Check out Git repository          
DEBU[0000] Job.Steps: Set up Node.js                    
DEBU[0000] Job.Steps: pnpm/action-setup@v2              
DEBU[0000] Job.Steps: Install Node.js dependencies      
DEBU[0000] Job.Steps: Run linters                       
DEBU[0000] Job.TimeoutMinutes:                          
DEBU[0000] Job.Services: map[]                          
DEBU[0000] Job.Strategy: <nil>                          
DEBU[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
DEBU[0000] Job.Defaults.Run.Shell:                      
DEBU[0000] Job.Defaults.Run.WorkingDirectory:           
DEBU[0000] Job.Outputs: map[]                           
DEBU[0000] Job.Uses:                                    
DEBU[0000] Job.With: map[]                              
DEBU[0000] Job.Result:                                  
DEBU[0000] Empty Strategy, matrixes=[map[]]             
DEBU[0000] Job Matrices: [map[]]                        
DEBU[0000] Runner Matrices: map[]                       
DEBU[0000] Final matrix after applying user inclusions '[map[]]' 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e 
DEBU[0000] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e 
DEBU[0000] Detected CPUs: 16                            
[Lint/Run linters] [DEBUG] evaluating expression 'success()'
[Lint/Run linters] [DEBUG] expression 'success()' evaluated to 'true'
[Lint/Run linters] πŸš€  Start image=catthehacker/ubuntu:act-latest
INFO[0000] Parallel tasks (0) below minimum, setting to 1 
[Lint/Run linters]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Lint/Run linters] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Lint/Run linters] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Lint/Run linters] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Lint/Run linters] [DEBUG] Digest: sha256:af3705784c28fd98e31604674fa63958884ffd939124c6aa880d86b1eb0f9276 :: 
[Lint/Run linters] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
DEBU[0000] Saving notices etag=7e6403df-3da5-4c09-96d2-f13a82ea337c 
DEBU[0000] No new notices                               
[Lint/Run linters] [DEBUG] Removed container: dd7210cba6fb7fa3988575b249caaea61b604a32e98868c33c752bcf5f29b8ca
[Lint/Run linters] [DEBUG]   🐳  docker volume rm act-Lint-Run-linters-a48cc5534c9b7b351ee40288dfe896b9e026ec4ca5aca93356fbe6479f3d11fa
[Lint/Run linters] [DEBUG]   🐳  docker volume rm act-Lint-Run-linters-a48cc5534c9b7b351ee40288dfe896b9e026ec4ca5aca93356fbe6479f3d11fa-env
INFO[0001] Parallel tasks (0) below minimum, setting to 1 
[Lint/Run linters]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[Lint/Run linters] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/home/aiden/Documents/repos/aocr Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
[Lint/Run linters] [DEBUG] Common container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:host PortBindings:map[] RestartPolicy:{Name: MaximumRetryCount:0} AutoRemove:false VolumeDriver: VolumesFrom:[] ConsoleSize:[0 0] Annotations:map[] CapAdd:[] CapDrop:[] CgroupnsMode: DNS:[] DNSOptions:[] DNSSearch:[] ExtraHosts:[] GroupAdd:[] IpcMode: Cgroup: Links:[] OomScoreAdj:0 PidMode: Privileged:false PublishAllPorts:false ReadonlyRootfs:false SecurityOpt:[] StorageOpt:map[] Tmpfs:map[] UTSMode: UsernsMode: ShmSize:0 Sysctls:map[] Runtime: Isolation: Resources:{CPUShares:0 Memory:0 NanoCPUs:0 CgroupParent: BlkioWeight:0 BlkioWeightDevice:[] BlkioDeviceReadBps:[] BlkioDeviceWriteBps:[] BlkioDeviceReadIOps:[] BlkioDeviceWriteIOps:[] CPUPeriod:0 CPUQuota:0 CPURealtimePeriod:0 CPURealtimeRuntime:0 CpusetCpus: CpusetMems: Devices:[] DeviceCgroupRules:[] DeviceRequests:[] KernelMemory:0 KernelMemoryTCP:0 MemoryReservation:0 MemorySwap:0 MemorySwappiness:<nil> OomKillDisable:<nil> PidsLimit:<nil> Ulimits:[] CPUCount:0 CPUPercent:0 IOMaximumIOps:0 IOMaximumBandwidth:0} Mounts:[{Type:volume Source:act-toolcache Target:/toolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Lint-Run-linters-a48cc5534c9b7b351ee40288dfe896b9e026ec4ca5aca93356fbe6479f3d11fa-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Lint-Run-linters-a48cc5534c9b7b351ee40288dfe896b9e026ec4ca5aca93356fbe6479f3d11fa Target:/home/aiden/Documents/repos/aocr ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
[Lint/Run linters] [DEBUG] input.NetworkAliases ==> [Run linters]
[Lint/Run linters] [DEBUG] not a use defined config??
[Lint/Run linters] [DEBUG] Created container name=act-Lint-Run-linters-a48cc5534c9b7b351ee40288dfe896b9e026ec4ca5aca93356fbe6479f3d11fa id=3dab7a3047e32e3357937e59ebb905e29cc6d19a22229126f0025bb2b694752e from image catthehacker/ubuntu:act-latest (platform: )
[Lint/Run linters] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
[Lint/Run linters]   🐳  docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[Lint/Run linters] [DEBUG] Starting container: 3dab7a3047e32e3357937e59ebb905e29cc6d19a22229126f0025bb2b694752e
[Lint/Run linters] [DEBUG] Started container: 3dab7a3047e32e3357937e59ebb905e29cc6d19a22229126f0025bb2b694752e
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/event.json len:2
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[Lint/Run linters] [DEBUG] Extracting content to '/var/run/act/'
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Skipping local actions/checkout because workdir was already copied
[Lint/Run linters] [DEBUG] skip pre step for 'Check out Git repository': no action model available
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters]   ☁  git clone 'https://github.com/actions/setup-node' # ref=v3
[Lint/Run linters] [DEBUG]   cloning https://github.com/actions/setup-node to /root/.cache/act/actions-setup-node@v3
[Lint/Run linters] [DEBUG] Unable to pull refs/heads/v3: worktree contains unstaged changes
[Lint/Run linters] [DEBUG] Cloned https://github.com/actions/setup-node to /root/.cache/act/actions-setup-node@v3
[Lint/Run linters] [DEBUG] Checked out v3
[Lint/Run linters] [DEBUG] Read action &{Setup Node.js environment GitHub Setup a Node.js environment by adding problem matchers and optionally downloading and adding it to the PATH. map[always-auth:{Set always-auth in npmrc. false false} architecture:{Target architecture for Node to use. Examples: x86, x64. Will use system architecture by default. false } cache:{Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm. false } cache-dependency-path:{Used to specify the path to a dependency file: package-lock.json, yarn.lock, etc. Supports wildcards or a list of file names for caching multiple dependencies. false } check-latest:{Set this option if you want the action to check for the latest available version that satisfies the version spec. false false} node-version:{Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0. false } node-version-file:{File containing the version Spec of the version to use.  Examples: .nvmrc, .node-version, .tool-versions. false } registry-url:{Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN. false } scope:{Optional scope for authenticating against scoped registries. Will fall back to the repository owner when using the GitHub Packages registry (https://npm.pkg.github.com/). false } token:{Used to pull node distributions from node-versions. Since there's a default, this is typically not supplied by the user. When running this action on github.com, the default value is sufficient. When running on GHES, you can pass a personal access token for github.com if you are experiencing rate limiting. false ${{ github.server_url == 'https://github.com' && github.token || '' }}}] map[cache-hit:{A boolean value to indicate if a cache was hit. } node-version:{The installed node version. }] {node16 map[] dist/setup/index.js  always() dist/cache-save/index.js success()   [] []} { }} from 'Unknown'
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters]   ☁  git clone 'https://github.com/pnpm/action-setup' # ref=v2
[Lint/Run linters] [DEBUG]   cloning https://github.com/pnpm/action-setup to /root/.cache/act/pnpm-action-setup@v2
[Lint/Run linters] [DEBUG] Provided ref is not a sha. Checking out branch before pulling changes
[Lint/Run linters] [DEBUG] Cloned https://github.com/pnpm/action-setup to /root/.cache/act/pnpm-action-setup@v2
[Lint/Run linters] [DEBUG] Provided ref is not a sha. Updating branch ref after pull
[Lint/Run linters] [DEBUG] Checked out v2
[Lint/Run linters] [DEBUG] Read action &{Setup pnpm  Install pnpm package manager map[dest:{Where to store pnpm files false ~/setup-pnpm} package_json_file:{File path to the package.json to read "packageManager" configuration false package.json} run_install:{If specified, run `pnpm install` false null} standalone:{When set to true, @pnpm/exe, which is a Node.js bundled package, will be installed, enabling using pnpm without Node.js. false false} version:{Version of pnpm to install false }] map[] {node16 map[] dist/index.js  always() dist/index.js always()   [] []} {orange package}} from 'Unknown'
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Skipping local actions/checkout because workdir was already copied
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.169:43873/ CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v2 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:run-linters GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:someaspy/aocr GITHUB_REPOSITORY_OWNER:someaspy GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:91101035b1d6dec0d5a99af15712aec3bdd9d86e GITHUB_WORKFLOW:Lint GITHUB_WORKSPACE:/home/aiden/Documents/repos/aocr ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] evaluating expression ''
[Lint/Run linters] [DEBUG] expression '' evaluated to 'true'
[Lint/Run linters] ⭐ Run Main Check out Git repository
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[Lint/Run linters] [DEBUG] Extracting content to '/var/run/act'
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters]   🐳  docker cp src=/home/aiden/Documents/repos/aocr/. dst=/home/aiden/Documents/repos/aocr
[Lint/Run linters] [DEBUG] Writing tarball /tmp/act3154855080 from /home/aiden/Documents/repos/aocr/.
[Lint/Run linters] [DEBUG] Stripping prefix:/home/aiden/Documents/repos/aocr/ src:/home/aiden/Documents/repos/aocr/.
[Lint/Run linters] [DEBUG] Extracting content from '/tmp/act3154855080' to '/home/aiden/Documents/repos/aocr'
[Lint/Run linters]   βœ…  Success - Main Check out Git repository
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.169:43873/ CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v3 GITHUB_ACTION_REPOSITORY:actions/setup-node 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:run-linters GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:someaspy/aocr GITHUB_REPOSITORY_OWNER:someaspy GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:91101035b1d6dec0d5a99af15712aec3bdd9d86e GITHUB_WORKFLOW:Lint GITHUB_WORKSPACE:/home/aiden/Documents/repos/aocr INPUT_NODE-VERSION:latest ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] evaluating expression ''
[Lint/Run linters] [DEBUG] expression '' evaluated to 'true'
[Lint/Run linters] ⭐ Run Main Set up Node.js
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[Lint/Run linters] [DEBUG] Extracting content to '/var/run/act'
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] About to run action &{Setup Node.js environment GitHub Setup a Node.js environment by adding problem matchers and optionally downloading and adding it to the PATH. map[always-auth:{Set always-auth in npmrc. false false} architecture:{Target architecture for Node to use. Examples: x86, x64. Will use system architecture by default. false } cache:{Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm. false } cache-dependency-path:{Used to specify the path to a dependency file: package-lock.json, yarn.lock, etc. Supports wildcards or a list of file names for caching multiple dependencies. false } check-latest:{Set this option if you want the action to check for the latest available version that satisfies the version spec. false false} node-version:{Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0. false } node-version-file:{File containing the version Spec of the version to use.  Examples: .nvmrc, .node-version, .tool-versions. false } registry-url:{Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN. false } scope:{Optional scope for authenticating against scoped registries. Will fall back to the repository owner when using the GitHub Packages registry (https://npm.pkg.github.com/). false } token:{Used to pull node distributions from node-versions. Since there's a default, this is typically not supplied by the user. When running this action on github.com, the default value is sufficient. When running on GHES, you can pass a personal access token for github.com if you are experiencing rate limiting. false ${{ github.server_url == 'https://github.com' && github.token || '' }}}] map[cache-hit:{A boolean value to indicate if a cache was hit. } node-version:{The installed node version. }] {node16 map[] dist/setup/index.js  always() dist/cache-save/index.js success()   [] []} { }}
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] expression '${{ github.server_url == 'https://github.com' && github.token || '' }}' rewritten to 'format('{0}', github.server_url == 'https://github.com' && github.token || '')'
[Lint/Run linters] [DEBUG] evaluating expression 'format('{0}', github.server_url == 'https://github.com' && github.token || '')'
[Lint/Run linters] [DEBUG] expression 'format('{0}', github.server_url == 'https://github.com' && github.token || '')' evaluated to '%!t(string=)'
[Lint/Run linters] [DEBUG] type=remote-action actionDir=/root/.cache/act/actions-setup-node@v3 actionPath= workdir=/home/aiden/Documents/repos/aocr actionCacheDir=/root/.cache/act actionName=actions-setup-node@v3 containerActionDir=/var/run/act/actions/actions-setup-node@v3
[Lint/Run linters] [DEBUG] Removing /root/.cache/act/actions-setup-node@v3/.gitignore before docker cp
[Lint/Run linters] [DEBUG] /var/run/act/actions/actions-setup-node@v3
[Lint/Run linters]   🐳  docker cp src=/root/.cache/act/actions-setup-node@v3/ dst=/var/run/act/actions/actions-setup-node@v3/
[Lint/Run linters] [DEBUG] Writing tarball /tmp/act2367562677 from /root/.cache/act/actions-setup-node@v3/
[Lint/Run linters] [DEBUG] Stripping prefix:/root/.cache/act/actions-setup-node@v3/ src:/root/.cache/act/actions-setup-node@v3/
[Lint/Run linters] [DEBUG] Extracting content from '/tmp/act2367562677' to '/var/run/act/actions/actions-setup-node@v3/'
[Lint/Run linters] [DEBUG] executing remote job container: [node /var/run/act/actions/actions-setup-node@v3/dist/setup/index.js]
[Lint/Run linters]   🐳  docker exec cmd=[node /var/run/act/actions/actions-setup-node@v3/dist/setup/index.js] user= workdir=
[Lint/Run linters] [DEBUG] Exec command '[node /var/run/act/actions/actions-setup-node@v3/dist/setup/index.js]'
[Lint/Run linters] [DEBUG] Working directory '/home/aiden/Documents/repos/aocr'
| getting latest node version...
| getting latest node version...
[Lint/Run linters]   πŸ’¬  ::debug::isExplicit: 21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::explicit? true
[Lint/Run linters]   πŸ’¬  ::debug::checking cache: /opt/hostedtoolcache/node/21.2.0/x64
[Lint/Run linters]   πŸ’¬  ::debug::not found
| Attempting to download v21.2.0...
[Lint/Run linters]   πŸ’¬  ::debug::No manifest cached
[Lint/Run linters]   πŸ’¬  ::debug::Getting manifest from actions/node-versions@main
[Lint/Run linters]   πŸ’¬  ::debug::check 20.9.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.8.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.8.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.7.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.6.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.6.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.5.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.5.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.4.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.3.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.3.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.2.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.1.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 20.0.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.18.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.18.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.18.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.17.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.17.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.16.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.16.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.15.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.14.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.14.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.14.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.13.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.12.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.12.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.11.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.10.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.9.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.9.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.8.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.7.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.6.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.5.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.4.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.3.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.2.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.1.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 18.0.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.20.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.20.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.20.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.19.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.19.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.18.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.18.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.17.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.17.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.16.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.15.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.15.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.14.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.14.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.14.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.13.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.13.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.13.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.12.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.11.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.11.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.10.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.9.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.9.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.8.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.7.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.6.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.6.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.6.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.5.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.4.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.4.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.4.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.3.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.2.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.1.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 16.0.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.21.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.21.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.21.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.21.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.20.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.20.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.19.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.19.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.19.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.19.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.18.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.18.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.18.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.18.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.17.6 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.17.5 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.17.4 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.17.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.17.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.17.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.17.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.16.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.16.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.15.5 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.15.4 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.15.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.15.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.15.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.15.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.14.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.13.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.13.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.12.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.11.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.10.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.10.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.9.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.8.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.7.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.6.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.5.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.4.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.3.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.2.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.1.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 14.0.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 13.14.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 13.13.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.12 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.11 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.10 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.9 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.8 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.7 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.6 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.5 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.4 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.22.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.21.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.20.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.20.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.20.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.19.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.19.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.18.4 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.18.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.18.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.18.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.18.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.17.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.16.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.16.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.16.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.16.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.15.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.14.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.14.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.13.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.13.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.12.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.11.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.11.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.10.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.9.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.9.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.8.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.8.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.7.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.6.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.5.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.4.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.3.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.3.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.2.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.1.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 12.0.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.24.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.24.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.23.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.23.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.23.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.23.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.22.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.22.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.21.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.20.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.20.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.19.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.18.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.18.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.17.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.16.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.16.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.16.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.16.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.15.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.15.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.15.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.15.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.14.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.14.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.14.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.13.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.12.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.11.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.10.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.9.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.8.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.7.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.6.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.5.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.4.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.4.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.3.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.2.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.2.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.1.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 10.0.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.17.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.16.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.16.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.16.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.15.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.15.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.14.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.14.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.13.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.12.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.11.4 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.11.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.11.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.11.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.11.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.10.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.9.4 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.9.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.9.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.9.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.9.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.8.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.8.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.7.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.6.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.5.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.4.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.3.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.2.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.2.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.1.4 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.1.3 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.1.2 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.1.1 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.1.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 8.0.0 satisfies v21.2.0
[Lint/Run linters]   πŸ’¬  ::debug::check 6.17.1 satisfies v21.2.0
| Not found in manifest. Falling back to download directly from Node
[Lint/Run linters]   πŸ’¬  ::debug::evaluating 595 versions
[Lint/Run linters]   πŸ’¬  ::debug::matched: v21.2.0
| Acquiring 21.2.0 - x64 from https://nodejs.org/dist/v21.2.0/node-v21.2.0-linux-x64.tar.gz
[Lint/Run linters]   πŸ’¬  ::debug::Downloading https://nodejs.org/dist/v21.2.0/node-v21.2.0-linux-x64.tar.gz
[Lint/Run linters]   πŸ’¬  ::debug::Destination /tmp/bbed357c-5654-4604-8c82-e10bfe3d4a4a
[Lint/Run linters]   πŸ’¬  ::debug::download complete
| Extracting ...
[Lint/Run linters]   πŸ’¬  ::debug::Checking tar --version
[Lint/Run linters]   πŸ’¬  ::debug::tar (GNU tar) 1.34%0ACopyright (C) 2021 Free Software Foundation, Inc.%0ALicense GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.%0AThis is free software: you are free to change and redistribute it.%0AThere is NO WARRANTY, to the extent permitted by law.%0A%0AWritten by John Gilmore and Jay Fenlason.
| [command]/usr/bin/tar xz --strip 1 --warning=no-unknown-keyword -C /tmp/c24d1b68-43db-4504-97c6-c3813bbc425a -f /tmp/bbed357c-5654-4604-8c82-e10bfe3d4a4a
| Adding to the cache ...
[Lint/Run linters]   πŸ’¬  ::debug::Caching tool node 21.2.0 x64
[Lint/Run linters]   πŸ’¬  ::debug::source dir: /tmp/c24d1b68-43db-4504-97c6-c3813bbc425a
[Lint/Run linters]   πŸ’¬  ::debug::destination /opt/hostedtoolcache/node/21.2.0/x64
[Lint/Run linters]   πŸ’¬  ::debug::finished caching tool
| Done
[Lint/Run linters]   ❓  ::group::Environment details
| node: v21.2.0
| npm: 10.2.3
| yarn: 
[Lint/Run linters]   ❓  ::endgroup::
[Lint/Run linters]   ❓ add-matcher /run/act/actions/actions-setup-node@v3/.github/tsc.json
[Lint/Run linters]   ❓ add-matcher /run/act/actions/actions-setup-node@v3/.github/eslint-stylish.json
[Lint/Run linters]   ❓ add-matcher /run/act/actions/actions-setup-node@v3/.github/eslint-compact.json
[Lint/Run linters]   βœ…  Success - Main Set up Node.js
[Lint/Run linters]   βš™  ::set-output:: node-version=v21.2.0
[Lint/Run linters]   βš™  ::add-path:: /opt/hostedtoolcache/node/21.2.0/x64/bin
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.169:43873/ CI:true GITHUB_ACTION:2 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v2 GITHUB_ACTION_REPOSITORY:pnpm/action-setup 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:run-linters GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:someaspy/aocr GITHUB_REPOSITORY_OWNER:someaspy GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:91101035b1d6dec0d5a99af15712aec3bdd9d86e GITHUB_WORKFLOW:Lint GITHUB_WORKSPACE:/home/aiden/Documents/repos/aocr INPUT_VERSION:latest ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] evaluating expression ''
[Lint/Run linters] [DEBUG] expression '' evaluated to 'true'
[Lint/Run linters] ⭐ Run Main pnpm/action-setup@v2
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[Lint/Run linters] [DEBUG] Extracting content to '/var/run/act'
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] About to run action &{Setup pnpm  Install pnpm package manager map[dest:{Where to store pnpm files false ~/setup-pnpm} package_json_file:{File path to the package.json to read "packageManager" configuration false package.json} run_install:{If specified, run `pnpm install` false null} standalone:{When set to true, @pnpm/exe, which is a Node.js bundled package, will be installed, enabling using pnpm without Node.js. false false} version:{Version of pnpm to install false }] map[] {node16 map[] dist/index.js  always() dist/index.js always()   [] []} {orange package}}
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] type=remote-action actionDir=/root/.cache/act/pnpm-action-setup@v2 actionPath= workdir=/home/aiden/Documents/repos/aocr actionCacheDir=/root/.cache/act actionName=pnpm-action-setup@v2 containerActionDir=/var/run/act/actions/pnpm-action-setup@v2
[Lint/Run linters] [DEBUG] Removing /root/.cache/act/pnpm-action-setup@v2/.gitignore before docker cp
[Lint/Run linters] [DEBUG] /var/run/act/actions/pnpm-action-setup@v2
[Lint/Run linters]   🐳  docker cp src=/root/.cache/act/pnpm-action-setup@v2/ dst=/var/run/act/actions/pnpm-action-setup@v2/
[Lint/Run linters] [DEBUG] Writing tarball /tmp/act2523585955 from /root/.cache/act/pnpm-action-setup@v2/
[Lint/Run linters] [DEBUG] Stripping prefix:/root/.cache/act/pnpm-action-setup@v2/ src:/root/.cache/act/pnpm-action-setup@v2/
[Lint/Run linters] [DEBUG] Extracting content from '/tmp/act2523585955' to '/var/run/act/actions/pnpm-action-setup@v2/'
[Lint/Run linters] [DEBUG] executing remote job container: [node /var/run/act/actions/pnpm-action-setup@v2/dist/index.js]
[Lint/Run linters]   🐳  docker exec cmd=[node /var/run/act/actions/pnpm-action-setup@v2/dist/index.js] user= workdir=
[Lint/Run linters] [DEBUG] Exec command '[node /var/run/act/actions/pnpm-action-setup@v2/dist/index.js]'
[Lint/Run linters] [DEBUG] Working directory '/home/aiden/Documents/repos/aocr'
[Lint/Run linters]   ❓  ::group::Running self-installer...
|  WARN  GET https://registry.npmjs.org/pnpm error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
|  WARN  GET https://registry.npmjs.org/pnpm error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
|  ERR_PNPM_META_FETCH_FAIL  GET https://registry.npmjs.org/pnpm: Value of "this" must be of type URLSearchParams
[Lint/Run linters]   ❓  ::endgroup::
[Lint/Run linters]   ❗  ::error::Something went wrong, self-installer exits with code 1
| Installation Completed!
[Lint/Run linters]   ❌  Failure - Main pnpm/action-setup@v2
[Lint/Run linters]   βš™  ::set-output:: dest=/root/setup-pnpm
[Lint/Run linters]   βš™  ::set-output:: bin_dest=/root/setup-pnpm/node_modules/.bin
[Lint/Run linters]   βš™  ::add-path:: /root/setup-pnpm/node_modules/.bin
[Lint/Run linters] exitcode '1': failure
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.169:43873/ CI:true 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:run-linters GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:someaspy/aocr GITHUB_REPOSITORY_OWNER:someaspy GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:91101035b1d6dec0d5a99af15712aec3bdd9d86e GITHUB_WORKFLOW:Lint GITHUB_WORKSPACE:/home/aiden/Documents/repos/aocr ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] evaluating expression ''
[Lint/Run linters] [DEBUG] expression '' evaluated to 'false'
[Lint/Run linters] [DEBUG] Skipping step 'Install Node.js dependencies' due to ''
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.169:43873/ CI:true GITHUB_ACTION:4 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:run-linters GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:someaspy/aocr GITHUB_REPOSITORY_OWNER:someaspy GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:91101035b1d6dec0d5a99af15712aec3bdd9d86e GITHUB_WORKFLOW:Lint GITHUB_WORKSPACE:/home/aiden/Documents/repos/aocr ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] evaluating expression ''
[Lint/Run linters] [DEBUG] expression '' evaluated to 'false'
[Lint/Run linters] [DEBUG] Skipping step 'Run linters' due to ''
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.169:43873/ CI:true GITHUB_ACTION:2 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v2 GITHUB_ACTION_REPOSITORY:pnpm/action-setup 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:run-linters GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:someaspy/aocr GITHUB_REPOSITORY_OWNER:someaspy GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:91101035b1d6dec0d5a99af15712aec3bdd9d86e GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_WORKFLOW:Lint GITHUB_WORKSPACE:/home/aiden/Documents/repos/aocr INPUT_DEST:~/setup-pnpm INPUT_PACKAGE_JSON_FILE:package.json INPUT_RUN_INSTALL:null INPUT_STANDALONE:false INPUT_VERSION:latest ImageOS:ubuntu20 PATH:/opt/hostedtoolcache/node/21.2.0/x64/bin:/opt/hostedtoolcache/node/18.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] evaluating expression 'always()'
[Lint/Run linters] [DEBUG] expression 'always()' evaluated to 'true'
[Lint/Run linters] ⭐ Run Post pnpm/action-setup@v2
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[Lint/Run linters] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[Lint/Run linters] [DEBUG] Extracting content to '/var/run/act'
[Lint/Run linters] [DEBUG] run post step for 'pnpm/action-setup@v2'
[Lint/Run linters] [DEBUG] executing remote job container: [node /var/run/act/actions/pnpm-action-setup@v2/dist/index.js]
[Lint/Run linters]   🐳  docker exec cmd=[node /var/run/act/actions/pnpm-action-setup@v2/dist/index.js] user= workdir=
[Lint/Run linters] [DEBUG] Exec command '[node /var/run/act/actions/pnpm-action-setup@v2/dist/index.js]'
[Lint/Run linters] [DEBUG] Working directory '/home/aiden/Documents/repos/aocr'
| Pruning is unnecessary.
[Lint/Run linters]   βœ…  Success - Post pnpm/action-setup@v2
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.169:43873/ CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v3 GITHUB_ACTION_REPOSITORY:actions/setup-node 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:run-linters GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:someaspy/aocr GITHUB_REPOSITORY_OWNER:someaspy GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:91101035b1d6dec0d5a99af15712aec3bdd9d86e GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_WORKFLOW:Lint GITHUB_WORKSPACE:/home/aiden/Documents/repos/aocr INPUT_ALWAYS-AUTH:false INPUT_ARCHITECTURE: INPUT_CACHE: INPUT_CACHE-DEPENDENCY-PATH: INPUT_CHECK-LATEST:false INPUT_NODE-VERSION:latest INPUT_NODE-VERSION-FILE: INPUT_REGISTRY-URL: INPUT_SCOPE: INPUT_TOKEN: ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] evaluating expression 'success()'
[Lint/Run linters] [DEBUG] expression 'success()' evaluated to 'false'
[Lint/Run linters] [DEBUG] Skipping step 'Set up Node.js' due to 'success()'
[Lint/Run linters] [DEBUG] skipping post step for 'Check out Git repository': no action model available
[Lint/Run linters] 🏁  Job failed
[Lint/Run linters] [DEBUG] Loading revision from git directory
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
[Lint/Run linters] [DEBUG] HEAD points to '91101035b1d6dec0d5a99af15712aec3bdd9d86e'
[Lint/Run linters] [DEBUG] using github ref: refs/heads/main
[Lint/Run linters] [DEBUG] Found revision: 91101035b1d6dec0d5a99af15712aec3bdd9d86e
Error: Job 'Run linters' failed

Additional information

.actrc content:

-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
aminya commented 9 months ago

I can reproduce this error. I am using this instead to fix the issue

      - name: Setup PNPM for Act
        if: ${{ env.ACT }}
        run: |
          npm i -g pnpm
          pnpm setup
          source /root/.bashrc
          echo "PATH=$PATH" >> $GITHUB_ENV
          echo "PNPM_HOME=$PNPM_HOME" >> $GITHUB_ENV
        env:
          SHELL: bash
SomeAspy commented 9 months ago

This appears to be fixed now, thanks guys!

tafaust commented 7 months ago

Not fixed for me. Any information I can provide?

SomeAspy commented 7 months ago

This issue still appears. I have updated the issue with info from the latest version of ACT.

usrrname commented 6 months ago

I've reproduced this on Apple M2 Pro while using nektos/act with pnpm 8.10.0 with node v20.9.0.

The following info is in my .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
-P self-hosted=catthehacker/ubuntu:act-20.04
--container-architecture linux/arm64

Related: https://github.com/pnpm/pnpm/issues/6424

SomeAspy commented 3 weeks ago

I fixed this by using the latest PNPM github action (v4)