-
Notifications
You must be signed in to change notification settings - Fork 3
/
issues.json
1 lines (1 loc) · 410 KB
/
issues.json
1
[{"assignees":[],"author":{"login":"H4CK3R0FF1C14L"},"body":"### Details\n\nI'm trying to build Sandboxie in Windows using this project and I don't understand where I should find the saved files after the build? I've searched all over Windows, reviewed all the documentation and the commands used in the examples like --artifact-server-path don't work for me.","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-03-27T21:48:37Z","id":"I_kwDOCcSpD86D1-Kd","labels":[{"id":"MDU6TGFiZWwzMDgxNzMwNDM5","name":"kind/discussion","description":"This is purely for discussing things","color":"0000FF"},{"id":"MDU6TGFiZWwzMjcwNTcwNDY1","name":"area/docs","description":"Documentation","color":"d9bef7"}],"milestone":null,"number":2264,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Build result","updatedAt":"2024-03-27T21:48:37Z","url":"https://github.com/nektos/act/issues/2264"},{"assignees":[],"author":{"login":"brianmgray"},"body":"### Bug report info\n\n```plain text\n❯ act --bug-report\r\nact version: 0.2.60\r\nGOOS: darwin\r\nGOARCH: amd64\r\nNumCPU: 6\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n\t/var/run/docker.sock\r\n\t$HOME/.docker/run/docker.sock\r\nConfig files:\r\n\t/Users/brian/Library/Application Support/act/actrc:\r\n\t\t-P ubuntu-latest=catthehacker/ubuntu:act-latest\r\n\t\t-P ubuntu-22.04=catthehacker/ubuntu:act-22.04\r\n\t\t-P ubuntu-20.04=catthehacker/ubuntu:act-20.04\r\n\t\t-P ubuntu-18.04=catthehacker/ubuntu:act-18.04\r\nBuild info:\r\n\tGo version: go1.22.0\r\n\tModule path: command-line-arguments\r\n\tMain version:\r\n\tMain path:\r\n\tMain checksum:\r\n\tBuild settings:\r\n\t\t-buildmode: exe\r\n\t\t-compiler: gc\r\n\t\t-ldflags: -X main.version=0.2.60\r\n\t\tDefaultGODEBUG: httplaxcontentlength=1,httpmuxgo121=1,panicnil=1,tls10server=1,tlsrsakex=1,tlsunsafeekm=1\r\n\t\tCGO_ENABLED: 1\r\n\t\tCGO_CFLAGS:\r\n\t\tCGO_CPPFLAGS:\r\n\t\tCGO_CXXFLAGS:\r\n\t\tCGO_LDFLAGS:\r\n\t\tGOARCH: amd64\r\n\t\tGOOS: darwin\r\n\t\tGOAMD64: v1\r\nDocker Engine:\r\n\tEngine version: 25.0.3\r\n\tEngine runtime: runc\r\n\tCgroup version: 2\r\n\tCgroup driver: cgroupfs\r\n\tStorage driver: overlay2\r\n\tRegistry URI: https://index.docker.io/v1/\r\n\tOS: Docker Desktop\r\n\tOS type: linux\r\n\tOS version:\r\n\tOS arch: x86_64\r\n\tOS kernel: 6.6.16-linuxkit\r\n\tOS CPU: 4\r\n\tOS memory: 11711 MB\r\n\tSecurity options:\r\n\t\tname=seccomp,profile=unconfined\r\n\t\tname=cgroupns\n```\n\n\n### Command used with act\n\n```sh\nact pull_request -W .github/workflows/pr.yaml\n```\n\n\n### Describe issue\n\nI expect the action to run successfully as it does on Github. I hopped into the container, and indeed copy is not available on the command line, but I am not sure why.\n\n### Link to GitHub repository\n\n_No response_\n\n### Workflow content\n\n```yml\n# .github/workflows/pr.yaml\r\nname: Build and deploy (PR)\r\n\r\non:\r\n pull_request:\r\n types: [opened, synchronize, reopened]\r\n branches:\r\n - main\r\n workflow_dispatch:\r\n\r\njobs:\r\n exec:\r\n uses: ./.github/workflows/build-and-deploy.yml\r\n secrets: inherit\r\n with:\r\n preview: true\r\n\r\n\r\n\r\n# .github/workflows/build-and-deploy.yml\r\nname: Build and deploy\r\n\r\nenv:\r\n # see static-web-apps-deploy\r\n APP_LOCATION: \"frontend\" # location of frontend files to deploy\r\n API_LOCATION: \"\" # location of API files to deploy - not supported for nextjs hybrid deploy\r\n OUTPUT_LOCATION: \"\" # must be an empty string when skipping app build\r\n NODE_VERSION: '18.x'\r\n CI: true\r\n\r\non:\r\n workflow_call:\r\n inputs:\r\n preview:\r\n required: false\r\n type: boolean\r\n default: false\r\n\r\njobs:\r\n build_and_deploy:\r\n name: Build and Deploy\r\n runs-on: ubuntu-latest\r\n environment:\r\n name: ${{ inputs.preview == true && 'preview' || 'production' }}\r\n url: ${{ steps.deploy.outputs.webapp-url }}\r\n permissions:\r\n contents: read\r\n id-token: write\r\n pull-requests: write\r\n defaults:\r\n run:\r\n working-directory: .\r\n\r\n steps:\r\n - name: Fixes # https://stackoverflow.com/questions/76939182/azure-static-webapps-not-able-to-deploy-failed-to-remove-http-https-github\r\n run: |\r\n chmod -R 777 . # Change permissions as necessary\r\n echo \"CI=false\" >> $GITHUB_ENV\r\n\r\n - uses: actions/checkout@v3\r\n\r\n - name: Use Node.js ${{ env.NODE_VERSION }}\r\n uses: actions/setup-node@v3\r\n with:\r\n node-version: ${{ env.NODE_VERSION }}\r\n\r\n - name: Populate Env\r\n run: ./scripts/populate-env.sh --preview=${{ inputs.preview }}\r\n \r\n - name: Install and build\r\n run: |\r\n npm ci\r\n npm run build\r\n npm run test\r\n\r\n - name: Deploy\r\n id: deploy\r\n uses: Azure/static-web-apps-deploy@v1\r\n with:\r\n azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }}\r\n repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)\r\n action: \"upload\"\r\n skip_app_build: true\r\n skip_api_build: true\r\n app_location: ${{ env.APP_LOCATION }}\r\n # api_location: ${{ env.API_LOCATION }}\r\n # output_location: ${{ env.OUTPUT_LOCATION }}\r\n env:\r\n BASE_URL: ${{ secrets.BASE_URL }}\r\n SERVICEBUS_FUGUUXDEMO: ${{ secrets.SERVICEBUS_FUGUUXDEMO }}\r\n STORAGE_COSMOS_CONNECTION: ${{ secrets.STORAGE_COSMOS_CONNECTION }}\n```\n\n\n### Relevant log output\n\n```sh\n[Build and deploy (PR)/exec] [DEBUG] evaluating expression 'success()'\r\n[Build and deploy (PR)/exec] [DEBUG] expression 'success()' evaluated to 'true'\r\n[Build and deploy (PR)/exec] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'success()'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'success()' evaluated to 'true'\r\n[exec/Build and deploy/Build and Deploy] 🚀 Start image=catthehacker/ubuntu:act-latest\r\n[exec/Build and deploy/Build and Deploy] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()\r\n[exec/Build and deploy/Build and Deploy] using DockerAuthConfig authentication for docker pull\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Digest: sha256:90765557fac689cc088afec53098b37ae926d05dcb2c6fa462a280d05ae45e6a :: \r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: \r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Removed container: 3b5b275da4c9f2775a8568a07bd44533609804e2c844a07ac63e9704948b1e82\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] 🐳 docker volume rm act-exec-Build-and-deploy-Build-and-Deploy-3e316bc8758b93a1ba194156562b4b26ef6b7b7d34a8f23078c9e831b713ceac\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] 🐳 docker volume rm act-exec-Build-and-deploy-Build-and-Deploy-3e316bc8758b93a1ba194156562b4b26ef6b7b7d34a8f23078c9e831b713ceac-env\r\n[exec/Build and deploy/Build and Deploy] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:false 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:/Users/brian/workspaces/fuguUX/fuguUX-Frontend Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}\r\n[exec/Build and deploy/Build and Deploy] [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:/opt/hostedtoolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-exec-Build-and-deploy-Build-and-Deploy-3e316bc8758b93a1ba194156562b4b26ef6b7b7d34a8f23078c9e831b713ceac-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-exec-Build-and-deploy-Build-and-Deploy-3e316bc8758b93a1ba194156562b4b26ef6b7b7d34a8f23078c9e831b713ceac Target:/Users/brian/workspaces/fuguUX/fuguUX-Frontend ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] input.NetworkAliases ==> [Build and Deploy]\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Created container name=act-exec-Build-and-deploy-Build-and-Deploy-3e316bc8758b93a1ba194156562b4b26ef6b7b7d34a8f23078c9e831b713ceac id=1b8cafa7b73dac68022a3c14cbe915fe35857e1ea937974801e0747569c77b12 from image catthehacker/ubuntu:act-latest (platform: )\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]\r\n[exec/Build and deploy/Build and Deploy] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Starting container: 1b8cafa7b73dac68022a3c14cbe915fe35857e1ea937974801e0747569c77b12\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Started container: 1b8cafa7b73dac68022a3c14cbe915fe35857e1ea937974801e0747569c77b12\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/event.json len:2\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Extracting content to '/var/run/act/'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Skipping local actions/checkout because workdir was already copied\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] skip pre step for 'actions/checkout@v3': no action model available\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'Use Node.js ${{ env.NODE_VERSION }}' rewritten to 'format('Use Node.js {0}', env.NODE_VERSION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('Use Node.js {0}', env.NODE_VERSION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('Use Node.js {0}', env.NODE_VERSION)' evaluated to '%!t(string=Use Node.js 18.x)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] ☁ git clone 'https://github.com/actions/setup-node' # ref=v3\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] cloning https://github.com/actions/setup-node to /Users/brian/.cache/act/actions-setup-node@v3\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Unable to pull refs/heads/v3: worktree contains unstaged changes\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Cloned https://github.com/actions/setup-node to /Users/brian/.cache/act/actions-setup-node@v3\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Checked out v3\r\n[exec/Build and deploy/Build and Deploy] [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'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] ☁ git clone 'https://github.com/Azure/static-web-apps-deploy' # ref=v1\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] cloning https://github.com/Azure/static-web-apps-deploy to /Users/brian/.cache/act/Azure-static-web-apps-deploy@v1\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Cloned https://github.com/Azure/static-web-apps-deploy to /Users/brian/.cache/act/Azure-static-web-apps-deploy@v1\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Checked out v1\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Read action &{Azure Static Web Apps Deploy Deploys an application to Azure Static Web Apps map[action:{Action to perform true } api_build_command:{Custom command for Oryx to run when building Azure Functions source code false } api_location:{Directory location of the Azure Functions source code false } app_artifact_location:{Identical in use to output_location false } app_build_command:{Custom command for Oryx to run when building application source code false } app_location:{Directory location of the application source code true } azure_static_web_apps_api_token:{Required token true } output_location:{Directory location of the compiled application code after building false } repo_token:{Token for interacting with the Github repository. Currently used only for commenting on Pull Requests. false } routes_location:{Directory location where the routes.json file can be found in the source code false } skip_app_build:{Skips the build step for the application source code if set to true. false }] map[static_web_app_url:{Url of the application }] {docker map[] always() always() Dockerfile [] []} {blue upload-cloud}} from 'Unknown'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.0.0.9:58920/ API_LOCATION: APP_LOCATION:frontend CI:true GITHUB_ACTION:0 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:pull_request GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:build_and_deploy GITHUB_REF:refs/pull/%!f(<nil>)/merge GITHUB_REF_NAME:%!f(<nil>)/merge GITHUB_REF_TYPE: GITHUB_REPOSITORY:fuguUX/fuguUX-Frontend GITHUB_REPOSITORY_OWNER:fuguUX GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aed9c2c3397e3e962d3df508c509eddab1312f5a GITHUB_WORKFLOW:Build and deploy GITHUB_WORKSPACE:/Users/brian/workspaces/fuguUX/fuguUX-Frontend ImageOS:ubuntu20 NODE_VERSION:18.x OUTPUT_LOCATION: RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression ''\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '' evaluated to 'true'\r\n[exec/Build and deploy/Build and Deploy] ⭐ Run Main Fixes\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Wrote command \r\n\r\nchmod -R 777 . # Change permissions as necessary\r\necho \"CI=false\" >> $GITHUB_ENV\r\n\r\n\r\n to 'workflow/0'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/0 len:84\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[exec/Build and deploy/Build and Deploy] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=.\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0]'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Working directory '/Users/brian/workspaces/fuguUX/fuguUX-Frontend/.'\r\n[exec/Build and deploy/Build and Deploy] ✅ Success - Main Fixes\r\n[exec/Build and deploy/Build and Deploy] ⚙ ::set-env:: CI=false\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Skipping local actions/checkout because workdir was already copied\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.0.0.9:58920/ API_LOCATION: APP_LOCATION:frontend CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v3 GITHUB_ACTION_REPOSITORY:actions/checkout GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:pull_request GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:build_and_deploy GITHUB_REF:refs/pull/%!f(<nil>)/merge GITHUB_REF_NAME:%!f(<nil>)/merge GITHUB_REF_TYPE: GITHUB_REPOSITORY:fuguUX/fuguUX-Frontend GITHUB_REPOSITORY_OWNER:fuguUX GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aed9c2c3397e3e962d3df508c509eddab1312f5a GITHUB_WORKFLOW:Build and deploy GITHUB_WORKSPACE:/Users/brian/workspaces/fuguUX/fuguUX-Frontend ImageOS:ubuntu20 NODE_VERSION:18.x OUTPUT_LOCATION: RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression ''\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '' evaluated to 'true'\r\n[exec/Build and deploy/Build and Deploy] ⭐ Run Main actions/checkout@v3\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] 🐳 docker cp src=/Users/brian/workspaces/fuguUX/fuguUX-Frontend/. dst=/Users/brian/workspaces/fuguUX/fuguUX-Frontend\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing tarball /var/folders/73/bwtb58vx1jd_6qkryw7b2bwm0000gn/T/act2942403288 from /Users/brian/workspaces/fuguUX/fuguUX-Frontend/.\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Stripping prefix:/Users/brian/workspaces/fuguUX/fuguUX-Frontend/ src:/Users/brian/workspaces/fuguUX/fuguUX-Frontend/.\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Extracting content from '/var/folders/73/bwtb58vx1jd_6qkryw7b2bwm0000gn/T/act2942403288' to '/Users/brian/workspaces/fuguUX/fuguUX-Frontend'\r\n[exec/Build and deploy/Build and Deploy] ✅ Success - Main actions/checkout@v3\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'Use Node.js ${{ env.NODE_VERSION }}' rewritten to 'format('Use Node.js {0}', env.NODE_VERSION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('Use Node.js {0}', env.NODE_VERSION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('Use Node.js {0}', env.NODE_VERSION)' evaluated to '%!t(string=Use Node.js 18.x)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '${{ env.NODE_VERSION }}' rewritten to 'format('{0}', env.NODE_VERSION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('{0}', env.NODE_VERSION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('{0}', env.NODE_VERSION)' evaluated to '%!t(string=18.x)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.0.0.9:58920/ API_LOCATION: APP_LOCATION:frontend CI:true GITHUB_ACTION:2 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:pull_request GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:build_and_deploy GITHUB_REF:refs/pull/%!f(<nil>)/merge GITHUB_REF_NAME:%!f(<nil>)/merge GITHUB_REF_TYPE: GITHUB_REPOSITORY:fuguUX/fuguUX-Frontend GITHUB_REPOSITORY_OWNER:fuguUX GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aed9c2c3397e3e962d3df508c509eddab1312f5a GITHUB_WORKFLOW:Build and deploy GITHUB_WORKSPACE:/Users/brian/workspaces/fuguUX/fuguUX-Frontend INPUT_NODE-VERSION:18.x ImageOS:ubuntu20 NODE_VERSION:18.x OUTPUT_LOCATION: RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression ''\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '' evaluated to 'true'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'Use Node.js ${{ env.NODE_VERSION }}' rewritten to 'format('Use Node.js {0}', env.NODE_VERSION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('Use Node.js {0}', env.NODE_VERSION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('Use Node.js {0}', env.NODE_VERSION)' evaluated to '%!t(string=Use Node.js 18.x)'\r\n[exec/Build and deploy/Build and Deploy] ⭐ Run Main Use Node.js 18.x\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [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() [] []} { }}\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '${{ github.server_url == 'https://github.com' && github.token || '' }}' rewritten to 'format('{0}', github.server_url == 'https://github.com' && github.token || '')'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('{0}', github.server_url == 'https://github.com' && github.token || '')'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('{0}', github.server_url == 'https://github.com' && github.token || '')' evaluated to '%!t(string=)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] type=remote-action actionDir=/Users/brian/.cache/act/actions-setup-node@v3 actionPath= workdir=/Users/brian/workspaces/fuguUX/fuguUX-Frontend actionCacheDir=/Users/brian/.cache/act actionName=actions-setup-node@v3 containerActionDir=/var/run/act/actions/actions-setup-node@v3\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] /var/run/act/actions/actions-setup-node@v3\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Removing /Users/brian/.cache/act/actions-setup-node@v3/.gitignore before docker cp\r\n[exec/Build and deploy/Build and Deploy] 🐳 docker cp src=/Users/brian/.cache/act/actions-setup-node@v3/ dst=/var/run/act/actions/actions-setup-node@v3/\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing tarball /var/folders/73/bwtb58vx1jd_6qkryw7b2bwm0000gn/T/act3484695503 from /Users/brian/.cache/act/actions-setup-node@v3/\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Stripping prefix:/Users/brian/.cache/act/actions-setup-node@v3/ src:/Users/brian/.cache/act/actions-setup-node@v3/\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Extracting content from '/var/folders/73/bwtb58vx1jd_6qkryw7b2bwm0000gn/T/act3484695503' to '/var/run/act/actions/actions-setup-node@v3/'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] executing remote job container: [node /var/run/act/actions/actions-setup-node@v3/dist/setup/index.js]\r\n[exec/Build and deploy/Build and Deploy] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-node@v3/dist/setup/index.js] user= workdir=\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Exec command '[node /var/run/act/actions/actions-setup-node@v3/dist/setup/index.js]'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Working directory '/Users/brian/workspaces/fuguUX/fuguUX-Frontend'\r\n[exec/Build and deploy/Build and Deploy] 💬 ::debug::isExplicit: \r\n[exec/Build and deploy/Build and Deploy] 💬 ::debug::explicit? false\r\n[exec/Build and deploy/Build and Deploy] 💬 ::debug::isExplicit: 18.19.1\r\n[exec/Build and deploy/Build and Deploy] 💬 ::debug::explicit? true\r\n[exec/Build and deploy/Build and Deploy] 💬 ::debug::evaluating 1 versions\r\n[exec/Build and deploy/Build and Deploy] 💬 ::debug::matched: 18.19.1\r\n[exec/Build and deploy/Build and Deploy] 💬 ::debug::checking cache: /opt/hostedtoolcache/node/18.19.1/x64\r\n[exec/Build and deploy/Build and Deploy] 💬 ::debug::Found tool in cache node 18.19.1 x64\r\n[exec/Build and deploy/Build and Deploy] | Found in cache @ /opt/hostedtoolcache/node/18.19.1/x64\r\n[exec/Build and deploy/Build and Deploy] ❓ ::group::Environment details\r\n[exec/Build and deploy/Build and Deploy] | node: v18.19.1\r\n[exec/Build and deploy/Build and Deploy] | npm: 10.2.4\r\n[exec/Build and deploy/Build and Deploy] | yarn: \r\n[exec/Build and deploy/Build and Deploy] ❓ ::endgroup::\r\n[exec/Build and deploy/Build and Deploy] ❓ add-matcher /run/act/actions/actions-setup-node@v3/.github/tsc.json\r\n[exec/Build and deploy/Build and Deploy] ❓ add-matcher /run/act/actions/actions-setup-node@v3/.github/eslint-stylish.json\r\n[exec/Build and deploy/Build and Deploy] ❓ add-matcher /run/act/actions/actions-setup-node@v3/.github/eslint-compact.json\r\n[exec/Build and deploy/Build and Deploy] ✅ Success - Main Use Node.js 18.x\r\n[exec/Build and deploy/Build and Deploy] ⚙ ::set-output:: node-version=v18.19.1\r\n[exec/Build and deploy/Build and Deploy] ⚙ ::add-path:: /opt/hostedtoolcache/node/18.19.1/x64/bin\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.0.0.9:58920/ API_LOCATION: APP_LOCATION:frontend 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:pull_request GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:build_and_deploy GITHUB_REF:refs/pull/%!f(<nil>)/merge GITHUB_REF_NAME:%!f(<nil>)/merge GITHUB_REF_TYPE: GITHUB_REPOSITORY:fuguUX/fuguUX-Frontend GITHUB_REPOSITORY_OWNER:fuguUX GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aed9c2c3397e3e962d3df508c509eddab1312f5a GITHUB_WORKFLOW:Build and deploy GITHUB_WORKSPACE:/Users/brian/workspaces/fuguUX/fuguUX-Frontend ImageOS:ubuntu20 NODE_VERSION:18.x OUTPUT_LOCATION: RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression ''\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '' evaluated to 'true'\r\n[exec/Build and deploy/Build and Deploy] ⭐ Run Main Populate Env\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression './scripts/populate-env.sh --preview=${{ inputs.preview }}' rewritten to 'format('./scripts/populate-env.sh --preview={0}', inputs.preview)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('./scripts/populate-env.sh --preview={0}', inputs.preview)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('./scripts/populate-env.sh --preview={0}', inputs.preview)' evaluated to '%!t(string=./scripts/populate-env.sh --preview=true)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Wrote command \r\n\r\n./scripts/populate-env.sh --preview=true\r\n\r\n to 'workflow/3'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/3 len:42\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[exec/Build and deploy/Build and Deploy] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/3] user= workdir=.\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/3]'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Working directory '/Users/brian/workspaces/fuguUX/fuguUX-Frontend/.'\r\n[exec/Build and deploy/Build and Deploy] | Copied .env.preview to .env.local\r\n[exec/Build and deploy/Build and Deploy] | Populating var: SERVICEBUS_FUGUUXDEMO\r\n[exec/Build and deploy/Build and Deploy] | Populating var: STORAGE_COSMOS_CONNECTION\r\n[exec/Build and deploy/Build and Deploy] ✅ Success - Main Populate Env\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.0.0.9:58920/ API_LOCATION: APP_LOCATION:frontend 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:pull_request GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:build_and_deploy GITHUB_REF:refs/pull/%!f(<nil>)/merge GITHUB_REF_NAME:%!f(<nil>)/merge GITHUB_REF_TYPE: GITHUB_REPOSITORY:fuguUX/fuguUX-Frontend GITHUB_REPOSITORY_OWNER:fuguUX GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aed9c2c3397e3e962d3df508c509eddab1312f5a GITHUB_WORKFLOW:Build and deploy GITHUB_WORKSPACE:/Users/brian/workspaces/fuguUX/fuguUX-Frontend ImageOS:ubuntu20 NODE_VERSION:18.x OUTPUT_LOCATION: RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression ''\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '' evaluated to 'true'\r\n[exec/Build and deploy/Build and Deploy] ⭐ Run Main Install and build\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Wrote command \r\n\r\nnpm ci\r\nnpm run build\r\nnpm run test\r\n\r\n\r\n to 'workflow/4'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Writing entry to tarball workflow/4 len:36\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[exec/Build and deploy/Build and Deploy] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/4] user= workdir=.\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/4]'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Working directory '/Users/brian/workspaces/fuguUX/fuguUX-Frontend/.'\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | > fuguux-frontend@0.1.0 install\r\n[exec/Build and deploy/Build and Deploy] | > conc \"npm run install:*\"\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | [frontend] \r\n[exec/Build and deploy/Build and Deploy] | [frontend] > fuguux-frontend@0.1.0 install:frontend\r\n[exec/Build and deploy/Build and Deploy] | [frontend] > cd frontend && npm ci\r\n[exec/Build and deploy/Build and Deploy] | [frontend] \r\n[exec/Build and deploy/Build and Deploy] | [frontend] \r\n[exec/Build and deploy/Build and Deploy] | [frontend] added 448 packages, and audited 449 packages in 19s\r\n[exec/Build and deploy/Build and Deploy] | [frontend] \r\n[exec/Build and deploy/Build and Deploy] | [frontend] 154 packages are looking for funding\r\n[exec/Build and deploy/Build and Deploy] | [frontend] run `npm fund` for details\r\n[exec/Build and deploy/Build and Deploy] | [frontend] \r\n[exec/Build and deploy/Build and Deploy] | [frontend] found 0 vulnerabilities\r\n[exec/Build and deploy/Build and Deploy] | [frontend] npm run install:frontend exited with code 0\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | added 323 packages, and audited 324 packages in 39s\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | 54 packages are looking for funding\r\n[exec/Build and deploy/Build and Deploy] | run `npm fund` for details\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | 3 moderate severity vulnerabilities\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | To address all issues (including breaking changes), run:\r\n[exec/Build and deploy/Build and Deploy] | npm audit fix --force\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | Run `npm audit` for details.\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | > fuguux-frontend@0.1.0 build\r\n[exec/Build and deploy/Build and Deploy] | > swa build fuguux-frontend\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | Welcome to Azure Static Web Apps CLI (1.1.7)\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | Using configuration \"fuguux-frontend\" from file:\r\n[exec/Build and deploy/Build and Deploy] | swa-cli.config.json\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | Build configuration:\r\n[exec/Build and deploy/Build and Deploy] | - App location: frontend\r\n[exec/Build and deploy/Build and Deploy] | - API location: \r\n[exec/Build and deploy/Build and Deploy] | - Output location: .next/standalone\r\n[exec/Build and deploy/Build and Deploy] | - App build command: npm run build\r\n[exec/Build and deploy/Build and Deploy] | - API build command: \r\n[exec/Build and deploy/Build and Deploy] | Found package.json in frontend\r\n[exec/Build and deploy/Build and Deploy] | Installing dependencies with \"npm install\"...\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | up to date, audited 449 packages in 1s\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | 154 packages are looking for funding\r\n[exec/Build and deploy/Build and Deploy] | run `npm fund` for details\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | found 0 vulnerabilities\r\n[exec/Build and deploy/Build and Deploy] | Building app with npm run build in frontend ...\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | > fuguux-frontend-analyzer@0.1.0 prebuild\r\n[exec/Build and deploy/Build and Deploy] | > copy ../.env* .\r\n[exec/Build and deploy/Build and Deploy] | \r\n[exec/Build and deploy/Build and Deploy] | sh: 1: copy: not found\r\n[exec/Build and deploy/Build and Deploy] | Error: Command failed: npm run build\r\n[exec/Build and deploy/Build and Deploy] | at checkExecSyncError (node:child_process:890:11)\r\n[exec/Build and deploy/Build and Deploy] | at execSync (node:child_process:962:15)\r\n[exec/Build and deploy/Build and Deploy] | at runCommand (/Users/brian/workspaces/fuguUX/fuguUX-Frontend/node_modules/@azure/static-web-apps-cli/src/core/utils/command.ts:5:11)\r\n[exec/Build and deploy/Build and Deploy] | at build (/Users/brian/workspaces/fuguUX/fuguUX-Frontend/node_modules/@azure/static-web-apps-cli/src/cli/commands/build/build.ts:93:15)\r\n[exec/Build and deploy/Build and Deploy] | at Command.<anonymous> (/Users/brian/workspaces/fuguUX/fuguUX-Frontend/node_modules/@azure/static-web-apps-cli/src/cli/commands/build/register.ts:30:7)\r\n[exec/Build and deploy/Build and Deploy] | at Command.parseAsync (/Users/brian/workspaces/fuguUX/fuguUX-Frontend/node_modules/commander/lib/command.js:935:5)\r\n[exec/Build and deploy/Build and Deploy] | at run (/Users/brian/workspaces/fuguUX/fuguUX-Frontend/node_modules/@azure/static-web-apps-cli/src/cli/index.ts:106:3)\r\n[exec/Build and deploy/Build and Deploy] ❌ Failure - Main Install and build\r\n[exec/Build and deploy/Build and Deploy] exitcode '1': failure\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '${{ secrets.BASE_URL }}' rewritten to 'format('{0}', secrets.BASE_URL)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('{0}', secrets.BASE_URL)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('{0}', secrets.BASE_URL)' evaluated to '%!t(string=)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '${{ secrets.STORAGE_COSMOS_CONNECTION }}' rewritten to 'format('{0}', secrets.STORAGE_COSMOS_CONNECTION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('{0}', secrets.STORAGE_COSMOS_CONNECTION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('{0}', secrets.STORAGE_COSMOS_CONNECTION)' evaluated to '%!t(string=)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '${{ secrets.SERVICEBUS_FUGUUXDEMO }}' rewritten to 'format('{0}', secrets.SERVICEBUS_FUGUUXDEMO)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('{0}', secrets.SERVICEBUS_FUGUUXDEMO)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('{0}', secrets.SERVICEBUS_FUGUUXDEMO)' evaluated to '%!t(string=)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '${{ env.APP_LOCATION }}' rewritten to 'format('{0}', env.APP_LOCATION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('{0}', env.APP_LOCATION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('{0}', env.APP_LOCATION)' evaluated to '%!t(string=frontend)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '${{ secrets.GITHUB_TOKEN }}' rewritten to 'format('{0}', secrets.GITHUB_TOKEN)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('{0}', secrets.GITHUB_TOKEN)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('{0}', secrets.GITHUB_TOKEN)' evaluated to '%!t(string=)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }}' rewritten to 'format('{0}', secrets.AZURE_STATIC_WEB_APPS_API_TOKEN)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('{0}', secrets.AZURE_STATIC_WEB_APPS_API_TOKEN)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('{0}', secrets.AZURE_STATIC_WEB_APPS_API_TOKEN)' evaluated to '%!t(string=)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.0.0.9:58920/ API_LOCATION: APP_LOCATION:frontend BASE_URL: CI:true GITHUB_ACTION:deploy GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v1 GITHUB_ACTION_REPOSITORY:Azure/static-web-apps-deploy GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:pull_request GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:build_and_deploy GITHUB_REF:refs/pull/%!f(<nil>)/merge GITHUB_REF_NAME:%!f(<nil>)/merge GITHUB_REF_TYPE: GITHUB_REPOSITORY:fuguUX/fuguUX-Frontend GITHUB_REPOSITORY_OWNER:fuguUX GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aed9c2c3397e3e962d3df508c509eddab1312f5a GITHUB_WORKFLOW:Build and deploy GITHUB_WORKSPACE:/Users/brian/workspaces/fuguUX/fuguUX-Frontend INPUT_ACTION:upload INPUT_APP_LOCATION:frontend INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN: INPUT_REPO_TOKEN: INPUT_SKIP_API_BUILD:true INPUT_SKIP_APP_BUILD:true ImageOS:ubuntu20 NODE_VERSION:18.x OUTPUT_LOCATION: RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: SERVICEBUS_FUGUUXDEMO: STORAGE_COSMOS_CONNECTION:]\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression ''\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '' evaluated to 'false'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Skipping step 'Deploy' due to ''\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] skipping post step for 'Deploy'; main step was skipped\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'Use Node.js ${{ env.NODE_VERSION }}' rewritten to 'format('Use Node.js {0}', env.NODE_VERSION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('Use Node.js {0}', env.NODE_VERSION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('Use Node.js {0}', env.NODE_VERSION)' evaluated to '%!t(string=Use Node.js 18.x)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression '${{ env.NODE_VERSION }}' rewritten to 'format('{0}', env.NODE_VERSION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'format('{0}', env.NODE_VERSION)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'format('{0}', env.NODE_VERSION)' evaluated to '%!t(string=18.x)'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.0.0.9:58920/ API_LOCATION: APP_LOCATION:frontend CI:true GITHUB_ACTION:2 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:pull_request GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:build_and_deploy GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/pull/%!f(<nil>)/merge GITHUB_REF_NAME:%!f(<nil>)/merge GITHUB_REF_TYPE: GITHUB_REPOSITORY:fuguUX/fuguUX-Frontend GITHUB_REPOSITORY_OWNER:fuguUX GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aed9c2c3397e3e962d3df508c509eddab1312f5a GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_WORKFLOW:Build and deploy GITHUB_WORKSPACE:/Users/brian/workspaces/fuguUX/fuguUX-Frontend INPUT_ALWAYS-AUTH:false INPUT_ARCHITECTURE: INPUT_CACHE: INPUT_CACHE-DEPENDENCY-PATH: INPUT_CHECK-LATEST:false INPUT_NODE-VERSION:18.x INPUT_NODE-VERSION-FILE: INPUT_REGISTRY-URL: INPUT_SCOPE: INPUT_TOKEN: ImageOS:ubuntu20 NODE_VERSION:18.x OUTPUT_LOCATION: RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] evaluating expression 'success()'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] expression 'success()' evaluated to 'false'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Skipping step 'Use Node.js ${{ env.NODE_VERSION }}' due to 'success()'\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] skipping post step for 'actions/checkout@v3': no action model available\r\n[exec/Build and deploy/Build and Deploy] 🏁 Job failed\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\r\n[exec/Build and deploy/Build and Deploy] [DEBUG] Found revision: aed9c2c3397e3e962d3df508c509eddab1312f5a\n```\n\n\n### Additional information\n\nThe copy is a result of a \"prebuild\" command I have in my package.json:\r\n\r\n\"prebuild\": \"copy ../.env* .\",","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-03-27T15:25:06Z","id":"I_kwDOCcSpD86DyroN","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2263,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"copy: not found, runs fine on github but fails on act","updatedAt":"2024-03-27T15:25:06Z","url":"https://github.com/nektos/act/issues/2263"},{"assignees":[],"author":{"login":"RS185734"},"body":"### Act version\n\n0.2.60\n\n### Feature description\n\nGCP Recommends not to use a Service account, and we are trying to implement workload identity.\r\n\r\n```\r\n steps:\r\n - uses: actions/checkout@v4\r\n - name: \"Authenticate to Google Cloud\"\r\n uses: \"google-github-actions/auth@v2\"\r\n with:\r\n workload_identity_provider: \"projects/some/locations/global/workloadIdentityPools/some-gh-pool/providers/some-gh-provider\"\r\n service_account: \"sa_name@project.iam.gserviceaccount.com\"\r\n\r\n```\r\n\r\nthe process works well in Github action but in act I see \r\n\r\n```\r\n[GCP - Rocky 8/GCP-VM-DEPLOY] ❗ ::error::google-github-actions/auth failed with: gitHub Actions did not inject $ACTIONS_ID_TOKEN_REQUEST_TOKEN or $ACTIONS_ID_TOKEN_REQUEST_URL into this job. This most likely means the GitHub Actions workflow permissions are incorrect, or this job is being run from a fork. For more information, please see https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token\r\n```\r\n\r\nam I missing some variables ?","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-03-27T13:06:23Z","id":"I_kwDOCcSpD86DxYbU","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODI0","name":"kind/feature-request","description":"New feature or request","color":"0000ff"}],"milestone":null,"number":2262,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Make GCP Workload Identity work with act","updatedAt":"2024-03-27T13:06:23Z","url":"https://github.com/nektos/act/issues/2262"},{"assignees":[],"author":{"login":"KDot227"},"body":"### Bug report info\n\n```plain text\nact version: 0.2.60\r\nGOOS: windows\r\nGOARCH: amd64\r\nNumCPU: 24\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\nConfig files:\r\n C:\\Users\\this1\\AppData\\Local\\act\\actrc:\r\n -P ubuntu-latest=catthehacker/ubuntu:act-latest\r\n -P ubuntu-22.04=catthehacker/ubuntu:act-22.04\r\n -P ubuntu-20.04=catthehacker/ubuntu:act-20.04\r\n -P ubuntu-18.04=catthehacker/ubuntu:act-18.04\r\nBuild info:\r\n Go version: go1.20.14\r\n Module path: github.com/nektos/act\r\n Main version: (devel)\r\n Main path: github.com/nektos/act\r\n Main checksum:\r\n Build settings:\r\n -buildmode: exe\r\n -compiler: gc\r\n -ldflags: -s -w -X main.version=0.2.60 -X main.commit=d3c8664d3d6acb855ae5418f6d02930c98bf877e -X main.date=2024-03-01T02:13:23Z -X main.builtBy=goreleaser\r\n CGO_ENABLED: 0\r\n GOARCH: amd64\r\n GOOS: windows\r\n GOAMD64: v1\r\n vcs: git\r\n vcs.revision: d3c8664d3d6acb855ae5418f6d02930c98bf877e\r\n vcs.time: 2024-03-01T02:12:58Z\r\n vcs.modified: false\r\n\r\nError: error during connect: this error may indicate that the docker daemon is not running: Get \"http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.24/info\": open //./pipe/docker_engine: The system cannot find the file specified.\n```\n\n\n### Command used with act\n\n```sh\n.\\act -j build -P windows-latest=-self-hosted\n```\n\n\n### Describe issue\n\nPython setup.ps1 errors when trying to download AND won't use a predownloaded python that is already on my machine.\n\n### Link to GitHub repository\n\n_No response_\n\n### Workflow content\n\n```yml\n# This workflow will install Python dependencies, run tests and lint with a single version of Python\r\n# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python\r\n\r\nname: Python application\r\n\r\non:\r\n push:\r\n branches: [ \"main\" ]\r\n pull_request:\r\n branches: [ \"main\" ]\r\n\r\npermissions:\r\n contents: read\r\n\r\njobs:\r\n build:\r\n\r\n runs-on: windows-latest\r\n\r\n steps:\r\n - uses: actions/checkout@v3\r\n - name: Set up Python 3.12.2\r\n uses: actions/setup-python@v3\r\n with:\r\n python-version: \"3.12.2\"\r\n - name: Install dependencies\r\n run: |\r\n python -m pip install --upgrade pip\r\n pip install flake8 pytest\r\n pip install -r requirements.txt\r\n - name: Lint with flake8\r\n run: |\r\n # stop the build if there are Python syntax errors or undefined names\r\n flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics\r\n # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide\r\n flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics\r\n - name: Test with pytest\r\n run: |\r\n pytest\n```\n\n\n### Relevant log output\n\n```sh\n[Python application/build] [DEBUG] evaluating expression 'success()'\r\n[Python application/build] [DEBUG] expression 'success()' evaluated to 'true'\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Skipping local actions/checkout because workdir was already copied\r\n[Python application/build] [DEBUG] skip pre step for 'actions/checkout@v3': no action model available\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] Γÿü git clone 'https://github.com/actions/setup-python' # ref=v3\r\n[Python application/build] [DEBUG] cloning https://github.com/actions/setup-python to C:\\Users\\this1\\.cache\\act/actions-setup-python@v3\r\n[Python application/build] [DEBUG] Unable to pull refs/heads/v3: non-fast-forward update\r\n[Python application/build] [DEBUG] Cloned https://github.com/actions/setup-python to C:\\Users\\this1\\.cache\\act/actions-setup-python@v3\r\n[Python application/build] [DEBUG] Checked out v3\r\n[Python application/build] [DEBUG] Read action &{Setup Python GitHub Set up a specific version of Python and add the command-line tools to the PATH. map[architecture:{The target architecture (x86, x64) of the Python interpreter. false } cache:{Used to specify a package manager for caching in the default directory. Supported values: pip, pipenv, poetry. false } cache-dependency-path:{Used to specify the path to dependency files. Supports wildcards or a list of file names for caching multiple dependencies. false } python-version:{Version range or exact version of a Python version to use, using SemVer's version range syntax. false 3.x} token:{Used to pull python distributions from actions/python-versions. Since there's a default, this is typically not supplied by the user. false ${{ github.token }}}] map[cache-hit:{A boolean value to indicate a cache entry was found } python-version:{The installed python version. Useful when given a version range as input. }] {node16 map[] dist/setup/index.js always() dist/cache-save/index.js success() [] []} {yellow code}} from 'Unknown'\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Skipping local actions/checkout because workdir was already copied\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.144.11.238:56610/ ALLUSERSPROFILE:C:\\ProgramData APPDATA:C:\\Users\\this1\\AppData\\Roaming CHROME_CRASHPAD_PIPE_NAME:\\\\.\\pipe\\crashpad_17136_AJEPAIBKONNHRSGH CI:true CLINK_DIR:C:\\Program Files (x86)\\clink COLORTERM:truecolor COMPUTERNAME:KDOT ChocolateyInstall:C:\\ProgramData\\chocolatey ChocolateyLastPathUpdate:133526909390693453 ChocolateyToolsLocation:C:\\tools ComSpec:C:\\WINDOWS\\system32\\cmd.exe CommonProgramFiles:C:\\Program Files\\Common Files CommonProgramFiles(x86):C:\\Program Files (x86)\\Common Files CommonProgramW6432:C:\\Program Files\\Common Files DriverData:C:\\Windows\\System32\\Drivers\\DriverData EFC_9356:1 FPS_BROWSER_APP_PROFILE_STRING:Internet Explorer FPS_BROWSER_USER_PROFILE_STRING:Default GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v3 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:C:/Users/this1/.cache/act/4cd61a58d142e328/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:build GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:KDot227/SomalifuscatorV2 GITHUB_REPOSITORY_OWNER:KDot227 GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:64c4cab82a996c3ab9cef4da76efceb4ebb0f534 GITHUB_WORKFLOW:Python application GITHUB_WORKSPACE:C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\hostexecutor GIT_ASKPASS:c:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass.sh GOPATH:C:\\Users\\this1\\go HOMEDRIVE:C: HOMEPATH:\\Users\\this1 ImageOS:windowslatest LANG:en_US.UTF-8 LOCALAPPDATA:C:\\Users\\this1\\AppData\\Local LOGONSERVER:\\\\KDOT NUMBER_OF_PROCESSORS:24 ORIGINAL_XDG_CURRENT_DESKTOP:undefined OS:Windows_NT OneDrive:C:\\Users\\this1\\OneDrive OneDriveConsumer:C:\\Users\\this1\\OneDrive PATHEXT:.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL POWERSHELL_DISTRIBUTION_CHANNEL:MSI:Windows 10 Pro PROCESSOR_ARCHITECTURE:AMD64 PROCESSOR_IDENTIFIER:Intel64 Family 6 Model 151 Stepping 2, GenuineIntel PROCESSOR_LEVEL:6 PROCESSOR_REVISION:9702 PSModulePath:C:\\Users\\this1\\Documents\\PowerShell\\Modules;C:\\Program Files\\PowerShell\\Modules;c:\\program files\\powershell\\7\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules PUBLIC:C:\\Users\\Public Path:C:\\Program Files\\PowerShell\\7;C:\\Program Files (x86)\\VMware\\VMware Workstation\\bin\\;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\starship\\bin\\;C:\\Program Files\\Git\\cmd;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\PowerShell\\7\\;C:\\Program Files\\dotnet\\;C:\\Program Files\\LLVM\\bin;C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance Toolkit\\;C:\\Program Files\\Go\\bin;C:\\Program Files\\CMake\\bin;C:\\tools\\gsudo\\Current;C:\\Program Files\\nodejs\\;C:\\Program Files (x86)\\Gpg4win\\..\\GnuPG\\bin;C:\\Program Files\\Mullvad VPN\\resources;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python312\\;C:\\Users\\this1\\.cargo\\bin;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\starship\\bin\\;C:\\Program Files\\Git\\cmd;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\PowerShell\\7\\;C:\\Program Files\\dotnet\\;C:\\Users\\this1\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\this1\\Downloads\\nim-2.0.2_x64\\nim-2.0.2\\bin;C:\\Users\\this1\\.nimble\\bin;\\Scripts;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python311;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python311\\Scripts;C:\\Program Files\\NASM;C:\\Program Files\\qemu;C:\\Users\\this1\\.dotnet\\tools;C:\\ProgramData\\mingw64\\mingw64\\bin;C:\\tools\\Nim\\nim-2.0.0\\bin;C:\\Users\\this1\\go\\bin;C:\\Users\\this1\\.bun\\bin;C:\\Users\\this1\\AppData\\Roaming\\npm;C:\\Program Files\\WinRAR; ProgramData:C:\\ProgramData ProgramFiles:C:\\Program Files ProgramFiles(x86):C:\\Program Files (x86) ProgramW6432:C:\\Program Files RUNNER_ARCH:amd64 RUNNER_OS:windows RUNNER_PERFLOG:/dev/null RUNNER_TEMP:C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\tmp RUNNER_TOOL_CACHE:C:\\Users\\this1\\.cache\\act\\tool_cache RUNNER_TRACKING_ID: SESSIONNAME:Console STARSHIP_SESSION_KEY:BFGmOQA5ydtf1lji STARSHIP_SHELL:pwsh SystemDrive:C: SystemRoot:C:\\WINDOWS TEMP:C:\\Users\\this1\\AppData\\Local\\Temp TERM_PROGRAM:vscode TERM_PROGRAM_VERSION:1.87.2 TMP:C:\\Users\\this1\\AppData\\Local\\Temp USERDOMAIN:KDOT USERDOMAIN_ROAMINGPROFILE:KDOT USERNAME:this1 USERPROFILE:C:\\Users\\this1 VBOX_MSI_INSTALL_PATH:C:\\Program Files\\Oracle\\VirtualBox\\ VIRTUAL_ENV_DISABLE_PROMPT:1 VSCODE_GIT_ASKPASS_EXTRA_ARGS: VSCODE_GIT_ASKPASS_MAIN:c:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass-main.js VSCODE_GIT_ASKPASS_NODE:C:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe VSCODE_GIT_IPC_HANDLE:\\\\.\\pipe\\vscode-git-f1bac0bcb4-sock VSCODE_INJECTION:1 __PSLockDownPolicy:0 windir:C:\\WINDOWS]\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] evaluating expression ''\r\n[Python application/build] [DEBUG] expression '' evaluated to 'true'\r\n[Python application/build] Γ¡É Run Main actions/checkout@v3\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Stripping prefix:C:\\Users\\this1\\Desktop\\Software\\Software\\SomalifuscatorV2\\ src:C:\\Users\\this1\\Desktop\\Software\\Software\\SomalifuscatorV2\\.\r\n[Python application/build] Γ£à Success - Main actions/checkout@v3\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.144.11.238:56610/ ALLUSERSPROFILE:C:\\ProgramData APPDATA:C:\\Users\\this1\\AppData\\Roaming CHROME_CRASHPAD_PIPE_NAME:\\\\.\\pipe\\crashpad_17136_AJEPAIBKONNHRSGH CI:true CLINK_DIR:C:\\Program Files (x86)\\clink COLORTERM:truecolor COMPUTERNAME:KDOT ChocolateyInstall:C:\\ProgramData\\chocolatey ChocolateyLastPathUpdate:133526909390693453 ChocolateyToolsLocation:C:\\tools ComSpec:C:\\WINDOWS\\system32\\cmd.exe CommonProgramFiles:C:\\Program Files\\Common Files CommonProgramFiles(x86):C:\\Program Files (x86)\\Common Files CommonProgramW6432:C:\\Program Files\\Common Files DriverData:C:\\Windows\\System32\\Drivers\\DriverData EFC_9356:1 FPS_BROWSER_APP_PROFILE_STRING:Internet Explorer FPS_BROWSER_USER_PROFILE_STRING:Default GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v3 GITHUB_ACTION_REPOSITORY:actions/setup-python GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:C:/Users/this1/.cache/act/4cd61a58d142e328/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:build GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:KDot227/SomalifuscatorV2 GITHUB_REPOSITORY_OWNER:KDot227 GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:64c4cab82a996c3ab9cef4da76efceb4ebb0f534 GITHUB_WORKFLOW:Python application GITHUB_WORKSPACE:C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\hostexecutor GIT_ASKPASS:c:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass.sh GOPATH:C:\\Users\\this1\\go HOMEDRIVE:C: HOMEPATH:\\Users\\this1 INPUT_PYTHON-VERSION:3.12.2 ImageOS:windowslatest LANG:en_US.UTF-8 LOCALAPPDATA:C:\\Users\\this1\\AppData\\Local LOGONSERVER:\\\\KDOT NUMBER_OF_PROCESSORS:24 ORIGINAL_XDG_CURRENT_DESKTOP:undefined OS:Windows_NT OneDrive:C:\\Users\\this1\\OneDrive OneDriveConsumer:C:\\Users\\this1\\OneDrive PATHEXT:.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL POWERSHELL_DISTRIBUTION_CHANNEL:MSI:Windows 10 Pro PROCESSOR_ARCHITECTURE:AMD64 PROCESSOR_IDENTIFIER:Intel64 Family 6 Model 151 Stepping 2, GenuineIntel PROCESSOR_LEVEL:6 PROCESSOR_REVISION:9702 PSModulePath:C:\\Users\\this1\\Documents\\PowerShell\\Modules;C:\\Program Files\\PowerShell\\Modules;c:\\program files\\powershell\\7\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules PUBLIC:C:\\Users\\Public Path:C:\\Program Files\\PowerShell\\7;C:\\Program Files (x86)\\VMware\\VMware Workstation\\bin\\;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\starship\\bin\\;C:\\Program Files\\Git\\cmd;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\PowerShell\\7\\;C:\\Program Files\\dotnet\\;C:\\Program Files\\LLVM\\bin;C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance Toolkit\\;C:\\Program Files\\Go\\bin;C:\\Program Files\\CMake\\bin;C:\\tools\\gsudo\\Current;C:\\Program Files\\nodejs\\;C:\\Program Files (x86)\\Gpg4win\\..\\GnuPG\\bin;C:\\Program Files\\Mullvad VPN\\resources;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python312\\;C:\\Users\\this1\\.cargo\\bin;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\starship\\bin\\;C:\\Program Files\\Git\\cmd;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\PowerShell\\7\\;C:\\Program Files\\dotnet\\;C:\\Users\\this1\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\this1\\Downloads\\nim-2.0.2_x64\\nim-2.0.2\\bin;C:\\Users\\this1\\.nimble\\bin;\\Scripts;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python311;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python311\\Scripts;C:\\Program Files\\NASM;C:\\Program Files\\qemu;C:\\Users\\this1\\.dotnet\\tools;C:\\ProgramData\\mingw64\\mingw64\\bin;C:\\tools\\Nim\\nim-2.0.0\\bin;C:\\Users\\this1\\go\\bin;C:\\Users\\this1\\.bun\\bin;C:\\Users\\this1\\AppData\\Roaming\\npm;C:\\Program Files\\WinRAR; ProgramData:C:\\ProgramData ProgramFiles:C:\\Program Files ProgramFiles(x86):C:\\Program Files (x86) ProgramW6432:C:\\Program Files RUNNER_ARCH:amd64 RUNNER_OS:windows RUNNER_PERFLOG:/dev/null RUNNER_TEMP:C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\tmp RUNNER_TOOL_CACHE:C:\\Users\\this1\\.cache\\act\\tool_cache RUNNER_TRACKING_ID: SESSIONNAME:Console STARSHIP_SESSION_KEY:BFGmOQA5ydtf1lji STARSHIP_SHELL:pwsh SystemDrive:C: SystemRoot:C:\\WINDOWS TEMP:C:\\Users\\this1\\AppData\\Local\\Temp TERM_PROGRAM:vscode TERM_PROGRAM_VERSION:1.87.2 TMP:C:\\Users\\this1\\AppData\\Local\\Temp USERDOMAIN:KDOT USERDOMAIN_ROAMINGPROFILE:KDOT USERNAME:this1 USERPROFILE:C:\\Users\\this1 VBOX_MSI_INSTALL_PATH:C:\\Program Files\\Oracle\\VirtualBox\\ VIRTUAL_ENV_DISABLE_PROMPT:1 VSCODE_GIT_ASKPASS_EXTRA_ARGS: VSCODE_GIT_ASKPASS_MAIN:c:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass-main.js VSCODE_GIT_ASKPASS_NODE:C:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe VSCODE_GIT_IPC_HANDLE:\\\\.\\pipe\\vscode-git-f1bac0bcb4-sock VSCODE_INJECTION:1 __PSLockDownPolicy:0 windir:C:\\WINDOWS]\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] evaluating expression ''\r\n[Python application/build] [DEBUG] expression '' evaluated to 'true'\r\n[Python application/build] Γ¡É Run Main Set up Python 3.12.2\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] About to run action &{Setup Python GitHub Set up a specific version of Python and add the command-line tools to the PATH. map[architecture:{The target architecture (x86, x64) of the Python interpreter. false } cache:{Used to specify a package manager for caching in the default directory. Supported values: pip, pipenv, poetry. false } cache-dependency-path:{Used to specify the path to dependency files. Supports wildcards or a list of file names for caching multiple dependencies. false } python-version:{Version range or exact version of a Python version to use, using SemVer's version range syntax. false 3.x} token:{Used to pull python distributions from actions/python-versions. Since there's a default, this is typically not supplied by the user. false ${{ github.token }}}] map[cache-hit:{A boolean value to indicate a cache entry was found } python-version:{The installed python version. Useful when given a version range as input. }] {node16 map[] dist/setup/index.js always() dist/cache-save/index.js success() [] []} {yellow code}}\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] expression '${{ github.token }}' rewritten to 'format('{0}', github.token)'\r\n[Python application/build] [DEBUG] evaluating expression 'format('{0}', github.token)'\r\n[Python application/build] [DEBUG] expression 'format('{0}', github.token)' evaluated to '%!t(string=)'\r\n[Python application/build] [DEBUG] type=remote-action actionDir=C:\\Users\\this1\\.cache\\act/actions-setup-python@v3 actionPath= workdir=C:\\Users\\this1\\Desktop\\Software\\Software\\SomalifuscatorV2 actionCacheDir=C:\\Users\\this1\\.cache\\act actionName=actions-setup-python@v3 containerActionDir=C:/Users/this1/.cache/act/4cd61a58d142e328/act/actions/actions-setup-python@v3\r\n[Python application/build] [DEBUG] C:/Users/this1/.cache/act/4cd61a58d142e328/act/actions/actions-setup-python@v3\r\n[Python application/build] [DEBUG] Removing C:\\Users\\this1\\.cache\\act/actions-setup-python@v3/.gitignore before docker cp\r\n[Python application/build] [DEBUG] Stripping prefix:C:\\Users\\this1\\.cache\\act\\actions-setup-python@v3\\ src:C:\\Users\\this1\\.cache\\act/actions-setup-python@v3/\r\n[Python application/build] [DEBUG] executing remote job container: [node C:/Users/this1/.cache/act/4cd61a58d142e328/act/actions/actions-setup-python@v3/dist/setup/index.js]\r\n[Python application/build] [DEBUG] Failed to setup Pty Unsupported\r\n[Python application/build] ≡ƒÆ¼ ::debug::Semantic version spec of 3.12.2 is 3.12.2\r\n[Python application/build] ≡ƒÆ¼ ::debug::isExplicit: 3.12.2\r\n[Python application/build] ≡ƒÆ¼ ::debug::explicit? true\r\n[Python application/build] ≡ƒÆ¼ ::debug::checking cache: C:\\Users\\this1\\.cache\\act\\tool_cache\\Python\\3.12.2\\x64\r\n[Python application/build] ≡ƒÆ¼ ::debug::not found\r\n[Python application/build] | Version 3.12.2 was not found in the local cache\r\n[Python application/build] ≡ƒÆ¼ ::debug::check 3.13.0-alpha.5 satisfies 3.12.2\r\n[Python application/build] ≡ƒÆ¼ ::debug::check 3.13.0-alpha.4 satisfies 3.12.2\r\n[Python application/build] ≡ƒÆ¼ ::debug::check 3.13.0-alpha.3 satisfies 3.12.2\r\n[Python application/build] ≡ƒÆ¼ ::debug::check 3.13.0-alpha.2 satisfies 3.12.2\r\n[Python application/build] ≡ƒÆ¼ ::debug::check 3.13.0-alpha.1 satisfies 3.12.2\r\n[Python application/build] ≡ƒÆ¼ ::debug::check 3.12.2 satisfies 3.12.2\r\n[Python application/build] ≡ƒÆ¼ ::debug::arm64===x64 && darwin===win32\r\n[Python application/build] ≡ƒÆ¼ ::debug::x64===x64 && darwin===win32\r\n[Python application/build] ≡ƒÆ¼ ::debug::x64===x64 && linux===win32\r\n[Python application/build] ≡ƒÆ¼ ::debug::x64===x64 && linux===win32\r\n[Python application/build] ≡ƒÆ¼ ::debug::x64===x64 && win32===win32\r\n[Python application/build] ≡ƒÆ¼ ::debug::matched 3.12.2\r\n[Python application/build] | Version 3.12.2 is available for downloading\r\n[Python application/build] | Download from \"https://github.com/actions/python-versions/releases/download/3.12.2-7817845786/python-3.12.2-win32-x64.zip\"\r\n[Python application/build] ≡ƒÆ¼ ::debug::Downloading https://github.com/actions/python-versions/releases/download/3.12.2-7817845786/python-3.12.2-win32-x64.zip\r\n[Python application/build] ≡ƒÆ¼ ::debug::Destination C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\tmp\\6c3e2b1c-363b-4c0a-82e4-765837a6b022\r\n[Python application/build] ≡ƒÆ¼ ::debug::download complete\r\n[Python application/build] | Extract downloaded archive\r\n[Python application/build] | [command]C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe -NoLogo -Sta -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command \"$ErrorActionPreference = 'Stop' ; try { Add-Type -AssemblyName System.IO.Compression.FileSystem } catch { } ; [System.IO.Compression.ZipFile]::ExtractToDirectory('C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\tmp\\6c3e2b1c-363b-4c0a-82e4-765837a6b022', 'C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\tmp\\248573ad-caa5-4a43-b99c-b05a1245b25a')\"\r\n[Python application/build] | Execute installation script\r\n[Python application/build] | Check if Python hostedtoolcache folder exist...\r\n[Python application/build] | \r\n[Python application/build] | Check if current Python version is installed...\r\n[Python application/build] | \r\n[Python application/build] | Python3.12 (x64) was found in C:\\Users\\this1\\.cache\\act\\tool_cache\\Python...\r\n[Python application/build] | \r\n[Python application/build] | Deleting C:\\Users\\this1\\.cache\\act\\tool_cache\\Python\\3.12.2\\x64...\r\n[Python application/build] | \r\n[Python application/build] | Remove registry entries for Python 3.12(x64)...\r\n[Python application/build] | \r\n[Python application/build] Γ¥ù ::error::Remove-Item : Requested registry access is not allowed.\r\n[Python application/build] Γ¥ô ::error::At C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\tmp\\248573ad-caa5-4a43-b99c-b05a1245b25a\\setup.ps1:56 char:13%0D%0A+ Remove-Item Registry::$_ -Recurse -Force -Verbose%0D%0A+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%0D%0A + CategoryInfo : PermissionDenied: (HKEY_LOCAL_MACH...rsion\\Uninstall:String) [Remove-Item], SecurityException\r\n[Python application/build] Γ¥ù ::error::+ FullyQualifiedErrorId : System.Security.SecurityException,Microsoft.PowerShell.Commands.RemoveItemCommand\r\n[Python application/build] Γ¥ù ::error::Remove-Item : Requested registry access is not allowed.\r\n[Python application/build] Γ¥ô ::error::At C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\tmp\\248573ad-caa5-4a43-b99c-b05a1245b25a\\setup.ps1:56 char:13%0D%0A+ Remove-Item Registry::$_ -Recurse -Force -Verbose%0D%0A+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%0D%0A + CategoryInfo : PermissionDenied: (HKEY_LOCAL_MACH...rsion\\Uninstall:String) [Remove-Item], SecurityException%0D%0A + FullyQualifiedErrorId : System.Security.SecurityException,Microsoft.PowerShell.Commands.RemoveItemCommand\r\n[Python application/build] | Create Python 3.12.2 folder in C:\\Users\\this1\\.cache\\act\\tool_cache\\Python\r\n[Python application/build] | \r\n[Python application/build] | Copy Python binaries to C:\\Users\\this1\\.cache\\act\\tool_cache\\Python\\3.12.2\\x64\r\n[Python application/build] | \r\n[Python application/build] | Install Python 3.12.2 in C:\\Users\\this1\\.cache\\act\\tool_cache\\Python...\r\n[Python application/build] | \r\n[Python application/build] Γ¥ù ::error::Error happened during Python installation%0D%0AAt C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\tmp\\248573ad-caa5-4a43-b99c-b05a1245b25a\\setup.ps1:127 char:5\r\n[Python application/build] Γ¥ù ::error::+ Throw \"Error happened during Python installation\"%0D%0A+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%0D%0A + CategoryInfo : OperationStopped: (Error happened ...on installation:String) [], RuntimeException%0D%0A + FullyQualifiedErrorId : Error happened during Python installation\r\n[Python application/build] Γ¥ù ::error::The process 'C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe' failed with exit code 1\r\n[Python application/build] Γ¥î Failure - Main Set up Python 3.12.2\r\n[Python application/build] exit status 1\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.144.11.238:56610/ ALLUSERSPROFILE:C:\\ProgramData APPDATA:C:\\Users\\this1\\AppData\\Roaming CHROME_CRASHPAD_PIPE_NAME:\\\\.\\pipe\\crashpad_17136_AJEPAIBKONNHRSGH CI:true CLINK_DIR:C:\\Program Files (x86)\\clink COLORTERM:truecolor COMPUTERNAME:KDOT ChocolateyInstall:C:\\ProgramData\\chocolatey ChocolateyLastPathUpdate:133526909390693453 ChocolateyToolsLocation:C:\\tools ComSpec:C:\\WINDOWS\\system32\\cmd.exe CommonProgramFiles:C:\\Program Files\\Common Files CommonProgramFiles(x86):C:\\Program Files (x86)\\Common Files CommonProgramW6432:C:\\Program Files\\Common Files DriverData:C:\\Windows\\System32\\Drivers\\DriverData EFC_9356:1 FPS_BROWSER_APP_PROFILE_STRING:Internet Explorer FPS_BROWSER_USER_PROFILE_STRING:Default 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:C:/Users/this1/.cache/act/4cd61a58d142e328/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:build GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:KDot227/SomalifuscatorV2 GITHUB_REPOSITORY_OWNER:KDot227 GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:64c4cab82a996c3ab9cef4da76efceb4ebb0f534 GITHUB_WORKFLOW:Python application GITHUB_WORKSPACE:C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\hostexecutor GIT_ASKPASS:c:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass.sh GOPATH:C:\\Users\\this1\\go HOMEDRIVE:C: HOMEPATH:\\Users\\this1 ImageOS:windowslatest LANG:en_US.UTF-8 LOCALAPPDATA:C:\\Users\\this1\\AppData\\Local LOGONSERVER:\\\\KDOT NUMBER_OF_PROCESSORS:24 ORIGINAL_XDG_CURRENT_DESKTOP:undefined OS:Windows_NT OneDrive:C:\\Users\\this1\\OneDrive OneDriveConsumer:C:\\Users\\this1\\OneDrive PATHEXT:.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL POWERSHELL_DISTRIBUTION_CHANNEL:MSI:Windows 10 Pro PROCESSOR_ARCHITECTURE:AMD64 PROCESSOR_IDENTIFIER:Intel64 Family 6 Model 151 Stepping 2, GenuineIntel PROCESSOR_LEVEL:6 PROCESSOR_REVISION:9702 PSModulePath:C:\\Users\\this1\\Documents\\PowerShell\\Modules;C:\\Program Files\\PowerShell\\Modules;c:\\program files\\powershell\\7\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules PUBLIC:C:\\Users\\Public Path:C:\\Program Files\\PowerShell\\7;C:\\Program Files (x86)\\VMware\\VMware Workstation\\bin\\;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\starship\\bin\\;C:\\Program Files\\Git\\cmd;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\PowerShell\\7\\;C:\\Program Files\\dotnet\\;C:\\Program Files\\LLVM\\bin;C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance Toolkit\\;C:\\Program Files\\Go\\bin;C:\\Program Files\\CMake\\bin;C:\\tools\\gsudo\\Current;C:\\Program Files\\nodejs\\;C:\\Program Files (x86)\\Gpg4win\\..\\GnuPG\\bin;C:\\Program Files\\Mullvad VPN\\resources;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python312\\;C:\\Users\\this1\\.cargo\\bin;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\starship\\bin\\;C:\\Program Files\\Git\\cmd;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\PowerShell\\7\\;C:\\Program Files\\dotnet\\;C:\\Users\\this1\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\this1\\Downloads\\nim-2.0.2_x64\\nim-2.0.2\\bin;C:\\Users\\this1\\.nimble\\bin;\\Scripts;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python311;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python311\\Scripts;C:\\Program Files\\NASM;C:\\Program Files\\qemu;C:\\Users\\this1\\.dotnet\\tools;C:\\ProgramData\\mingw64\\mingw64\\bin;C:\\tools\\Nim\\nim-2.0.0\\bin;C:\\Users\\this1\\go\\bin;C:\\Users\\this1\\.bun\\bin;C:\\Users\\this1\\AppData\\Roaming\\npm;C:\\Program Files\\WinRAR; ProgramData:C:\\ProgramData ProgramFiles:C:\\Program Files ProgramFiles(x86):C:\\Program Files (x86) ProgramW6432:C:\\Program Files RUNNER_ARCH:amd64 RUNNER_OS:windows RUNNER_PERFLOG:/dev/null RUNNER_TEMP:C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\tmp RUNNER_TOOL_CACHE:C:\\Users\\this1\\.cache\\act\\tool_cache RUNNER_TRACKING_ID: SESSIONNAME:Console STARSHIP_SESSION_KEY:BFGmOQA5ydtf1lji STARSHIP_SHELL:pwsh SystemDrive:C: SystemRoot:C:\\WINDOWS TEMP:C:\\Users\\this1\\AppData\\Local\\Temp TERM_PROGRAM:vscode TERM_PROGRAM_VERSION:1.87.2 TMP:C:\\Users\\this1\\AppData\\Local\\Temp USERDOMAIN:KDOT USERDOMAIN_ROAMINGPROFILE:KDOT USERNAME:this1 USERPROFILE:C:\\Users\\this1 VBOX_MSI_INSTALL_PATH:C:\\Program Files\\Oracle\\VirtualBox\\ VIRTUAL_ENV_DISABLE_PROMPT:1 VSCODE_GIT_ASKPASS_EXTRA_ARGS: VSCODE_GIT_ASKPASS_MAIN:c:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass-main.js VSCODE_GIT_ASKPASS_NODE:C:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe VSCODE_GIT_IPC_HANDLE:\\\\.\\pipe\\vscode-git-f1bac0bcb4-sock VSCODE_INJECTION:1 __PSLockDownPolicy:0 windir:C:\\WINDOWS]\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] evaluating expression ''\r\n[Python application/build] [DEBUG] expression '' evaluated to 'false'\r\n[Python application/build] [DEBUG] Skipping step 'Install dependencies' due to ''\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.144.11.238:56610/ ALLUSERSPROFILE:C:\\ProgramData APPDATA:C:\\Users\\this1\\AppData\\Roaming CHROME_CRASHPAD_PIPE_NAME:\\\\.\\pipe\\crashpad_17136_AJEPAIBKONNHRSGH CI:true CLINK_DIR:C:\\Program Files (x86)\\clink COLORTERM:truecolor COMPUTERNAME:KDOT ChocolateyInstall:C:\\ProgramData\\chocolatey ChocolateyLastPathUpdate:133526909390693453 ChocolateyToolsLocation:C:\\tools ComSpec:C:\\WINDOWS\\system32\\cmd.exe CommonProgramFiles:C:\\Program Files\\Common Files CommonProgramFiles(x86):C:\\Program Files (x86)\\Common Files CommonProgramW6432:C:\\Program Files\\Common Files DriverData:C:\\Windows\\System32\\Drivers\\DriverData EFC_9356:1 FPS_BROWSER_APP_PROFILE_STRING:Internet Explorer FPS_BROWSER_USER_PROFILE_STRING:Default 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:C:/Users/this1/.cache/act/4cd61a58d142e328/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:build GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:KDot227/SomalifuscatorV2 GITHUB_REPOSITORY_OWNER:KDot227 GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:64c4cab82a996c3ab9cef4da76efceb4ebb0f534 GITHUB_WORKFLOW:Python application GITHUB_WORKSPACE:C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\hostexecutor GIT_ASKPASS:c:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass.sh GOPATH:C:\\Users\\this1\\go HOMEDRIVE:C: HOMEPATH:\\Users\\this1 ImageOS:windowslatest LANG:en_US.UTF-8 LOCALAPPDATA:C:\\Users\\this1\\AppData\\Local LOGONSERVER:\\\\KDOT NUMBER_OF_PROCESSORS:24 ORIGINAL_XDG_CURRENT_DESKTOP:undefined OS:Windows_NT OneDrive:C:\\Users\\this1\\OneDrive OneDriveConsumer:C:\\Users\\this1\\OneDrive PATHEXT:.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL POWERSHELL_DISTRIBUTION_CHANNEL:MSI:Windows 10 Pro PROCESSOR_ARCHITECTURE:AMD64 PROCESSOR_IDENTIFIER:Intel64 Family 6 Model 151 Stepping 2, GenuineIntel PROCESSOR_LEVEL:6 PROCESSOR_REVISION:9702 PSModulePath:C:\\Users\\this1\\Documents\\PowerShell\\Modules;C:\\Program Files\\PowerShell\\Modules;c:\\program files\\powershell\\7\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules PUBLIC:C:\\Users\\Public Path:C:\\Program Files\\PowerShell\\7;C:\\Program Files (x86)\\VMware\\VMware Workstation\\bin\\;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\starship\\bin\\;C:\\Program Files\\Git\\cmd;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\PowerShell\\7\\;C:\\Program Files\\dotnet\\;C:\\Program Files\\LLVM\\bin;C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance Toolkit\\;C:\\Program Files\\Go\\bin;C:\\Program Files\\CMake\\bin;C:\\tools\\gsudo\\Current;C:\\Program Files\\nodejs\\;C:\\Program Files (x86)\\Gpg4win\\..\\GnuPG\\bin;C:\\Program Files\\Mullvad VPN\\resources;C:\\Program Files\\Docker\\Docker\\resources\\bin;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python312\\Scripts\\;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python312\\;C:\\Users\\this1\\.cargo\\bin;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\ProgramData\\chocolatey\\bin;C:\\Program Files\\starship\\bin\\;C:\\Program Files\\Git\\cmd;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\PowerShell\\7\\;C:\\Program Files\\dotnet\\;C:\\Users\\this1\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\bin;C:\\Users\\this1\\Downloads\\nim-2.0.2_x64\\nim-2.0.2\\bin;C:\\Users\\this1\\.nimble\\bin;\\Scripts;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python311;C:\\Users\\this1\\AppData\\Local\\Programs\\Python\\Python311\\Scripts;C:\\Program Files\\NASM;C:\\Program Files\\qemu;C:\\Users\\this1\\.dotnet\\tools;C:\\ProgramData\\mingw64\\mingw64\\bin;C:\\tools\\Nim\\nim-2.0.0\\bin;C:\\Users\\this1\\go\\bin;C:\\Users\\this1\\.bun\\bin;C:\\Users\\this1\\AppData\\Roaming\\npm;C:\\Program Files\\WinRAR; ProgramData:C:\\ProgramData ProgramFiles:C:\\Program Files ProgramFiles(x86):C:\\Program Files (x86) ProgramW6432:C:\\Program Files RUNNER_ARCH:amd64 RUNNER_OS:windows RUNNER_PERFLOG:/dev/null RUNNER_TEMP:C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\tmp RUNNER_TOOL_CACHE:C:\\Users\\this1\\.cache\\act\\tool_cache RUNNER_TRACKING_ID: SESSIONNAME:Console STARSHIP_SESSION_KEY:BFGmOQA5ydtf1lji STARSHIP_SHELL:pwsh SystemDrive:C: SystemRoot:C:\\WINDOWS TEMP:C:\\Users\\this1\\AppData\\Local\\Temp TERM_PROGRAM:vscode TERM_PROGRAM_VERSION:1.87.2 TMP:C:\\Users\\this1\\AppData\\Local\\Temp USERDOMAIN:KDOT USERDOMAIN_ROAMINGPROFILE:KDOT USERNAME:this1 USERPROFILE:C:\\Users\\this1 VBOX_MSI_INSTALL_PATH:C:\\Program Files\\Oracle\\VirtualBox\\ VIRTUAL_ENV_DISABLE_PROMPT:1 VSCODE_GIT_ASKPASS_EXTRA_ARGS: VSCODE_GIT_ASKPASS_MAIN:c:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass-main.js VSCODE_GIT_ASKPASS_NODE:C:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe VSCODE_GIT_IPC_HANDLE:\\\\.\\pipe\\vscode-git-f1bac0bcb4-sock VSCODE_INJECTION:1 __PSLockDownPolicy:0 windir:C:\\WINDOWS]\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\nogramFiles(x86):C:\\Program Files (x86) ProgramW6432:C:\\Program Files RUNNER_ARCH:amd64 RUNNER_OS:windows RUNNER_PERFLOG:/dev/null RUNNER_TEMP:C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\tmp RUNNER_TOOL_CACHE:C:\\Users\\this1\\.cache\\act\\tool_cache RUNNER_TRACKING_ID: SESSIONNAME:Console STARSHIP_SESSION_KEY:BFGmOQA5ydtf1lji STARSHIP_SHELL:pwsh SystemDrive:C: SystemRoot:C:\\WINDOWS TEMP:C:\\Users\\this1\\AppData\\Local\\Temp TERM_PROGRAM:vscode TERM_PROGRAM_VERSION:1.87.2 TMP:C:\\Users\\this1\\AppData\\Local\\Temp USERDOMAIN:KDOT USERDOMAIN_ROAMINGPROFILE:KDOT USERNAME:this1 USERPROFILE:C:\\Users\\this1 VBOX_MSI_INSTALL_PATH:C:\\Program Files\\Oracle\\VirtualBox\\ VIRTUAL_ENV_DISABLE_PROMPT:1 VSCODE_GIT_ASKPASS_EXTRA_ARGS: VSCODE_GIT_ASKPASS_MAIN:c:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass-main.js VSCODE_GIT_ASKPASS_NODE:C:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe VSCODE_GIT_IPC_HANDLE:\\\\.\\pipe\\vscode-git-f1bac0bcb4-sock VSCODE_INJECTION:1 __PSLockDownPolicy:0 windir:C:\\WINDOWS]\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] evaluating expression ''\r\n[Python application/build] [DEBUG] expression '' evaluated to 'false'\r\n[Python application/build] [DEBUG] Skipping step 'Test with pytest' due to ''\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] Loading revision from git directory\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] HEAD points to '64c4cab82a996c3ab9cef4da76efceb4ebb0f534'\r\n[Python application/build] [DEBUG] using github ref: refs/heads/main\r\n[Python application/build] [DEBUG] Found revision: 64c4cab82a996c3ab9cef4da76efceb4ebb0f534\r\n[Python application/build] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.144.11.238:56610/ ALLUSERSPROFILE:C:\\ProgramData APPDATA:C:\\Users\\this1\\AppData\\Roaming CHROME_CRASHPAD_PIPE_NAME:\\\\.\\pipe\\crashpad_17136_AJEPAIBKONNHRSGH CI:true CLINK_DIR:C:\\Program Files (x86)\\clink COLORTERM:truecolor COMPUTERNAME:KDOT ChocolateyInstall:C:\\ProgramData\\chocolatey ChocolateyLastPathUpdate:133526909390693453 ChocolateyToolsLocation:C:\\tools ComSpec:C:\\WINDOWS\\system32\\cmd.exe CommonProgramFiles:C:\\Program Files\\Common Files CommonProgramFiles(x86):C:\\Program Files (x86)\\Common Files CommonProgramW6432:C:\\Program Files\\Common Files DriverData:C:\\Windows\\System32\\Drivers\\DriverData EFC_9356:1 FPS_BROWSER_APP_PROFILE_STRING:Internet Explorer FPS_BROWSER_USER_PROFILE_STRING:Default GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v3 GITHUB_ACTION_REPOSITORY:actions/setup-python GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:C:/Users/this1/.cache/act/4cd61a58d142e328/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:C:/Users/this1/.cache/act/4cd61a58d142e328/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:build GITHUB_OUTPUT:C:/Users/this1/.cache/act/4cd61a58d142e328/act/workflow/outputcmd.txt GITHUB_PATH:C:/Users/this1/.cache/act/4cd61a58d142e328/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:KDot227/SomalifuscatorV2 GITHUB_REPOSITORY_OWNER:KDot227 GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:64c4cab82a996c3ab9cef4da76efceb4ebb0f534 GITHUB_STATE:C:/Users/this1/.cache/act/4cd61a58d142e328/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:C:/Users/this1/.cache/act/4cd61a58d142e328/act/workflow/SUMMARY.md GITHUB_WORKFLOW:Python application GITHUB_WORKSPACE:C:\\Users\\this1\\.cache\\act\\4cd61a58d142e328\\hostexecutor GIT_ASKPASS:c:\\Users\\this1\\AppData\\Local\\Programs\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass.sh GOPATH:C:\\Users\\this1\\go HOMEDRIVE:C:\n```\n\n\n### Additional information\n\nEven when I have an already installed python version I still get this error. I have tried removing the cache but nothing seems to be working.","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-03-22T14:49:59Z","id":"I_kwDOCcSpD86DSj3A","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2258,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Not Working on windows for python tests (downloading python breaks)","updatedAt":"2024-03-22T14:49:59Z","url":"https://github.com/nektos/act/issues/2258"},{"assignees":[],"author":{"login":"loynoir"},"body":"### Act version\r\n\r\n0.2.60\r\n\r\n### Feature description\r\n\r\nQuote readme from https://github.com/nektos/act\r\n\r\n> - **Local Task Runner** - I love [make](<https://en.wikipedia.org/wiki/Make_(software)>). However, I also hate repeating myself. With `act`, you can use the GitHub Actions defined in your `.github/workflows/` to replace your `Makefile`!\r\n\r\n`make` support tab completion, such as targets.\r\n\r\nWould be nice to see `act` support tab completion.\r\n\r\n```sh\r\n$ act --generate-completions $SHELL\r\n```","closed":false,"closedAt":null,"comments":[{"author":{"login":"reitzig"},"authorAssociation":"NONE","body":"Not sure how they got around cobra just generating the command, but somehow they managed. 😅","createdAt":"2024-03-18T16:19:48Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]}],"createdAt":"2024-03-16T08:21:27Z","id":"I_kwDOCcSpD86Cho-b","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODI0","name":"kind/feature-request","description":"New feature or request","color":"0000ff"}],"milestone":null,"number":2251,"projectCards":[],"reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":1}}],"state":"OPEN","title":"shell completion","updatedAt":"2024-03-18T16:19:49Z","url":"https://github.com/nektos/act/issues/2251"},{"assignees":[],"author":{"login":"matthewbaggett"},"body":"### Act version\n\nact version 0.2.60\n\n### Feature description\n\nIt would be nice if I could run a pair of jobs from my workflows. They're in different workflows and they're both the first stage of a pipeline, so I can't just specify workflow files","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-03-15T12:53:34Z","id":"I_kwDOCcSpD86CcSKD","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODI0","name":"kind/feature-request","description":"New feature or request","color":"0000ff"}],"milestone":null,"number":2250,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Support for multiple -j/--job","updatedAt":"2024-03-15T12:53:34Z","url":"https://github.com/nektos/act/issues/2250"},{"assignees":[],"author":{"login":"higaski"},"body":"### Bug report info\r\n\r\n```plain text\r\nact version: 0.2.60\r\nGOOS: linux\r\nGOARCH: amd64\r\nNumCPU: 16\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n /var/run/docker.sock\r\nConfig files: \r\n /home/vinci/.actrc:\r\n -P ubuntu-latest=catthehacker/ubuntu:full-latest\r\n -P ubuntu-22.04=catthehacker/ubuntu:full-22.04\r\n -P ubuntu-20.04=catthehacker/ubuntu:full-20.04\r\n -P ubuntu-18.04=catthehacker/ubuntu:full-18.04\r\nBuild info:\r\n Go version: go1.22.0\r\n Module path: github.com/nektos/act\r\n Main version: (devel)\r\n Main path: github.com/nektos/act\r\n Main checksum: \r\n Build settings:\r\n -buildmode: pie\r\n -compiler: gc\r\n -trimpath: true\r\n DefaultGODEBUG: httplaxcontentlength=1,httpmuxgo121=1,panicnil=1,tls10server=1,tlsrsakex=1,tlsunsafeekm=1\r\n CGO_ENABLED: 1\r\n GOARCH: amd64\r\n GOOS: linux\r\n GOAMD64: v1\r\nDocker Engine:\r\n Engine version: 25.0.3\r\n Engine runtime: runc\r\n Cgroup version: 2\r\n Cgroup driver: systemd\r\n Storage driver: overlay2\r\n Registry URI: https://index.docker.io/v1/\r\n OS: Garuda Linux\r\n OS type: linux\r\n OS version: \r\n OS arch: x86_64\r\n OS kernel: 6.7.8-zen1-1-zen\r\n OS CPU: 16\r\n OS memory: 31241 MB\r\n Security options:\r\n name=seccomp,profile=builtin\r\n name=cgroupns\r\n```\r\n\r\n\r\n### Command used with act\r\n\r\n```sh\r\nact\r\n```\r\n\r\n\r\n### Describe issue\r\n\r\nI have a workflow which uses the [install-qt-action](https://github.com/jurplel/install-qt-action) action which I'd like to run locally. Sadly this GitHub action seems to setup some Python stuff which act complains about.\r\n\r\n### Link to GitHub repository\r\n\r\n_No response_\r\n\r\n### Workflow content\r\n\r\n```yml\r\nname: build\r\n\r\non:\r\n push:\r\n branches: [master]\r\n\r\njobs:\r\n x86_64-linux-gnu-gcc:\r\n runs-on: ubuntu-22.04\r\n steps:\r\n - uses: actions/checkout@v4.1.1\r\n with:\r\n fetch-depth: 0\r\n - uses: jurplel/install-qt-action@v3\r\n with:\r\n version: '6.6.2'\r\n - run: cmake -Bbuild\r\n env:\r\n CC: gcc-13\r\n CXX: g++-13\r\n - run: cmake --build build --parallel --target all\r\n```\r\n\r\n\r\n### Relevant log output\r\n\r\n```sh\r\n[build/x86_64-linux-gnu-gcc] ⭐ Run Main jurplel/install-qt-action@v3\r\n[build/x86_64-linux-gnu-gcc] 🐳 docker cp src=/home/vinci/.cache/act/jurplel-install-qt-action@v3/ dst=/var/run/act/actions/jurplel-install-qt-action@v3/\r\n[build/x86_64-linux-gnu-gcc] 🐳 docker exec cmd=[chown -R 1001:127 /var/run/act/actions/jurplel-install-qt-action@v3/] user=0 workdir=\r\n[build/x86_64-linux-gnu-gcc] ⭐ Run Main Setup Python\r\n[build/x86_64-linux-gnu-gcc] 🐳 docker cp src=/home/vinci/.cache/act/actions-setup-python@v5/ dst=/var/run/act/actions/actions-setup-python@v5/\r\n[build/x86_64-linux-gnu-gcc] 🐳 docker exec cmd=[chown -R 1001:127 /var/run/act/actions/actions-setup-python@v5/] user=0 workdir=\r\n[build/x86_64-linux-gnu-gcc] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-python@v5/dist/setup/index.js] user= workdir=\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::Python is expected to be installed into /opt/hostedtoolcache\r\n[build/x86_64-linux-gnu-gcc] ❓ ::group::Installed versions\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::Semantic version spec of 3.6.x - 3.11.x is 3.6.x - 3.11.x\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::isExplicit: \r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::explicit? false\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::isExplicit: 3.10.13\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::explicit? true\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::isExplicit: 3.11.7\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::explicit? true\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::isExplicit: 3.12.1\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::explicit? true\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::isExplicit: 3.7.17\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::explicit? true\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::isExplicit: 3.8.18\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::explicit? true\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::isExplicit: 3.9.18\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::explicit? true\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::evaluating 6 versions\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::matched: 3.11.7\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::checking cache: /opt/hostedtoolcache/Python/3.11.7/x64\r\n[build/x86_64-linux-gnu-gcc] 💬 ::debug::Found tool in cache Python 3.11.7 x64\r\n| Successfully set up CPython (3.11.7)\r\n[build/x86_64-linux-gnu-gcc] ❓ ::endgroup::\r\n[build/x86_64-linux-gnu-gcc] ❗ ::error::Caching for 'false' is not supported\r\n[build/x86_64-linux-gnu-gcc] ❌ Failure - Main Setup Python\r\n```\r\n\r\n\r\n### Additional information\r\nI don't have a lot of experience with GitHub actions yet, please forgive me if this isn't a really a bug. Might it be due to act not supporting caching?","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-03-07T19:19:11Z","id":"I_kwDOCcSpD86BncZr","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2243,"projectCards":[],"reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":1}}],"state":"OPEN","title":"Getting \"Caching for 'false' is not supported\" error when using 3rd party action","updatedAt":"2024-03-08T06:52:09Z","url":"https://github.com/nektos/act/issues/2243"},{"assignees":[],"author":{"login":"startakovsky"},"body":"### Bug report info\n\n```plain text\n➜ llm_playground git:(main) act --bug-report\r\nact version: 0.2.60\r\nGOOS: darwin\r\nGOARCH: arm64\r\nNumCPU: 10\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n\t$HOME/.docker/run/docker.sock\r\nConfig files:\r\n\t/Users/steven/Library/Application Support/act/actrc:\r\n\t\t-P ubuntu-latest=node:16-buster-slim\r\n\t\t-P ubuntu-22.04=node:16-bullseye-slim\r\n\t\t-P ubuntu-20.04=node:16-buster-slim\r\n\t\t-P ubuntu-18.04=node:16-buster-slim\r\nBuild info:\r\n\tGo version: go1.22.0\r\n\tModule path: command-line-arguments\r\n\tMain version:\r\n\tMain path:\r\n\tMain checksum:\r\n\tBuild settings:\r\n\t\t-buildmode: exe\r\n\t\t-compiler: gc\r\n\t\t-ldflags: -X main.version=0.2.60\r\n\t\tDefaultGODEBUG: httplaxcontentlength=1,httpmuxgo121=1,panicnil=1,tls10server=1,tlsrsakex=1,tlsunsafeekm=1\r\n\t\tCGO_ENABLED: 1\r\n\t\tCGO_CFLAGS:\r\n\t\tCGO_CPPFLAGS:\r\n\t\tCGO_CXXFLAGS:\r\n\t\tCGO_LDFLAGS:\r\n\t\tGOARCH: arm64\r\n\t\tGOOS: darwin\r\n\r\nError: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?\r\n```\n```\n\n\n### Command used with act\n\n```sh\n`act push --container-architecture linux/amd64`\n```\n\n\n### Describe issue\n\n```act push --container-architecture linux/amd64\r\nINFO[0000] Using docker host 'unix:///Users/steven/.docker/run/docker.sock', and daemon socket 'unix:///Users/steven/.docker/run/docker.sock'\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🚀 Start image=node:16-buster-slim\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker pull image=node:16-buster-slim platform=linux/amd64 username= forcePull=true\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] using DockerAuthConfig authentication for docker pull\r\nINFO[0004] Parallel tasks (0) below minimum, setting to 1\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker create image=node:16-buster-slim platform=linux/amd64 entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker run image=node:16-buster-slim platform=linux/amd64 entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\nError: failed to start container: Error response from daemon: error while creating mount source path '/host_mnt/Users/steven/.docker/run/docker.sock': mkdir /host_mnt/Users/steven/.docker/run/docker.sock: operation not supported```\n\n### Link to GitHub repository\n\n_No response_\n\n### Workflow content\n\n```yml\nname: LLM PLAYGROUND TEST WORKFLOW \r\n\r\non:\r\n schedule:\r\n - cron: '0 16 * * *' # UTC time equivalent of 12 PM ET\r\n pull_request:\r\n branches:\r\n - main\r\n push:\r\n branches:\r\n - main\r\n workflow_dispatch:\r\n\r\njobs:\r\n run-notebook:\r\n runs-on: ubuntu-latest\r\n env: \r\n NOTEBOOK_NAME: 'Untitled1.ipynb'\r\n OUTPUT_FILE: 'executed_${{ github.run_id }}.pdf'\r\n defaults:\r\n run:\r\n working-directory: .\r\n strategy:\r\n matrix:\r\n python-version: [3.11]\r\n\r\n steps:\r\n - uses: actions/checkout@v3 # Check out the repository code\r\n\r\n - name: Set up Python\r\n uses: actions/setup-python@v4\r\n with:\r\n python-version: ${{ matrix.python-version }}\r\n\r\n - name: Navigate to the folder and install dependencies\r\n run: |\r\n pip install --user pipenv\r\n pipenv install --deploy\r\n\r\n - name: Execute Jupyter Notebook\r\n #env:\r\n #API_TOKEN: ${{ secrets.API_TOKEN }}\r\n run: |\r\n pipenv run jupyter nbconvert --to webpdf --execute $NOTEBOOK_NAME --output $GITHUB_WORKSPACE/$OUTPUT_FILE --allow-chromium-download\r\n ls\r\n\r\n - name: Upload executed notebook as an artifact\r\n uses: actions/upload-artifact@v4\r\n with:\r\n name: ${{ env.OUTPUT_FILE }}\r\n path: ${{ env.OUTPUT_FILE }}\r\n```\n```\n\n\n### Relevant log output\n\n```sh\n➜ llm_playground git:(main) act -v\r\nDEBU[0000] Handling container host and socket\r\nDEBU[0000] Defaulting container socket to DOCKER_HOST\r\nINFO[0000] Using docker host 'unix:///Users/steven/.docker/run/docker.sock', and daemon socket 'unix:///Users/steven/.docker/run/docker.sock'\r\nWARN ⚠ You are using Apple M-series chip and you have not specified container architecture, you might encounter issues while running act. If so, try running it with '--container-architecture linux/amd64'. ⚠\r\nDEBU[0000] Conditional GET for notices etag=b602dd8c-15c7-466f-be54-d63cf01a1ef2\r\nDEBU[0000] Loading environment from /Users/steven/code/llm_playground/.env\r\nDEBU[0000] Loading action inputs from /Users/steven/code/llm_playground/.input\r\nDEBU[0000] Loading secrets from /Users/steven/code/llm_playground/.secrets\r\nDEBU[0000] Loading vars from /Users/steven/code/llm_playground/.vars\r\nDEBU[0000] Evaluated matrix inclusions: map[]\r\nDEBU[0000] Loading workflows from '/Users/steven/code/llm_playground/.github/workflows'\r\nDEBU[0000] Loading workflows recursively\r\nDEBU[0000] Found workflow 'test.yml' in '/Users/steven/code/llm_playground/.github/workflows/test.yml'\r\nDEBU[0000] Reading workflow '/Users/steven/code/llm_playground/.github/workflows/test.yml'\r\nDEBU[0000] Preparing plan with all jobs\r\nDEBU[0000] Using default workflow event: push\r\nDEBU[0000] Planning jobs for event: push\r\nDEBU[0000] gc: 2024-03-05 13:59:09.86976 -0800 PST m=+0.004482835 module=artifactcache\r\nDEBU[0000] Plan Stages: [0x14000122438]\r\nDEBU[0000] Stages Runs: [run-notebook]\r\nDEBU[0000] Job.Name: run-notebook\r\nDEBU[0000] Job.RawNeeds: {0 0 <nil> [] 0 0}\r\nDEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest <nil> [] 16 14}\r\nDEBU[0000] Job.Env: {4 0 !!map <nil> [0x1400040e1e0 0x1400040e280 0x1400040e320 0x1400040e3c0] 18 7}\r\nDEBU[0000] Job.If: {0 0 success() <nil> [] 0 0}\r\nDEBU[0000] Job.Steps: actions/checkout@v3\r\nDEBU[0000] Job.Steps: Set up Python\r\nDEBU[0000] Job.Steps: Navigate to the folder and install dependencies\r\nDEBU[0000] Job.Steps: Execute Jupyter Notebook\r\nDEBU[0000] Job.Steps: Upload executed notebook as an artifact\r\nDEBU[0000] Job.TimeoutMinutes:\r\nDEBU[0000] Job.Services: map[]\r\nDEBU[0000] Job.Strategy: &{false 0 {4 0 !!map <nil> [0x1400040eaa0 0x1400040eb40] 25 9}}\r\nDEBU[0000] Job.RawContainer: {0 0 <nil> [] 0 0}\r\nDEBU[0000] Job.Defaults.Run.Shell:\r\nDEBU[0000] Job.Defaults.Run.WorkingDirectory: .\r\nDEBU[0000] Job.Outputs: map[]\r\nDEBU[0000] Job.Uses:\r\nDEBU[0000] Job.With: map[]\r\nDEBU[0000] Job.Result:\r\nDEBU[0000] Job.Strategy.FailFast: false\r\nDEBU[0000] Job.Strategy.MaxParallel: 0\r\nDEBU[0000] Job.Strategy.FailFastString:\r\nDEBU[0000] Job.Strategy.MaxParallelString:\r\nDEBU[0000] Job.Strategy.RawMatrix: {4 0 !!map <nil> [0x1400040eaa0 0x1400040eb40] 25 9}\r\nDEBU[0000] Loading revision from git directory\r\nDEBU[0000] Found revision: b3fb1609b2c96ffb8c5a0edf6c5b6b83fd3d1578\r\nDEBU[0000] HEAD points to 'b3fb1609b2c96ffb8c5a0edf6c5b6b83fd3d1578'\r\nDEBU[0000] using github ref: refs/heads/main\r\nDEBU[0000] Found revision: b3fb1609b2c96ffb8c5a0edf6c5b6b83fd3d1578\r\nDEBU[0000] Loading revision from git directory\r\nDEBU[0000] Found revision: b3fb1609b2c96ffb8c5a0edf6c5b6b83fd3d1578\r\nDEBU[0000] HEAD points to 'b3fb1609b2c96ffb8c5a0edf6c5b6b83fd3d1578'\r\nDEBU[0000] using github ref: refs/heads/main\r\nDEBU[0000] Found revision: b3fb1609b2c96ffb8c5a0edf6c5b6b83fd3d1578\r\nDEBU[0000]\r\nDEBU[0000] Job Matrices: [map[python-version:3.11]]\r\nDEBU[0000] Runner Matrices: map[]\r\nDEBU[0000] Final matrix after applying user inclusions '[map[python-version:3.11]]'\r\nDEBU[0000] Loading revision from git directory\r\nDEBU[0000] Found revision: b3fb1609b2c96ffb8c5a0edf6c5b6b83fd3d1578\r\nDEBU[0000] HEAD points to 'b3fb1609b2c96ffb8c5a0edf6c5b6b83fd3d1578'\r\nDEBU[0000] using github ref: refs/heads/main\r\nDEBU[0000] Found revision: b3fb1609b2c96ffb8c5a0edf6c5b6b83fd3d1578\r\nDEBU[0000] Detected CPUs: 10\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] evaluating expression 'success()'\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] expression 'success()' evaluated to 'true'\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🚀 Start image=node:16-buster-slim\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker pull image=node:16-buster-slim platform= username= forcePull=true\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] 🐳 docker pull node:16-buster-slim\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] pulling image 'docker.io/library/node:16-buster-slim' ()\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] using DockerAuthConfig authentication for docker pull\r\nDEBU[0000] Saving notices etag=b602dd8c-15c7-466f-be54-d63cf01a1ef2\r\nDEBU[0000] No new notices\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] Pulling from library/node :: 16-buster-slim\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] Digest: sha256:3ebf2875c188d22939c6ab080cfb1a4a6248cc86bae600ea8e2326aa03acdb8f ::\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] Status: Downloaded newer image for node:16-buster-slim ::\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] Removed container: 77e7e797c2d38cf12428820a2aa57a4fcdf31304554b270cc98ff84e4ce75082\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] 🐳 docker volume rm act-LLM-PLAYGROUND-TEST-WORKFLOW-run-notebook-297a8a35ec61d134ca9c496afaf5c824dfffc8468c07197d3b0023f9c3927732\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] 🐳 docker volume rm act-LLM-PLAYGROUND-TEST-WORKFLOW-run-notebook-297a8a35ec61d134ca9c496afaf5c824dfffc8468c07197d3b0023f9c3927732-env\r\nINFO[0004] Parallel tasks (0) below minimum, setting to 1\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker create image=node:16-buster-slim platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [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=ARM64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:node:16-buster-slim Volumes:map[] WorkingDir:/Users/steven/code/llm_playground Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] Common container.HostConfig ==> &{Binds:[/Users/steven/.docker/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:/opt/hostedtoolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-LLM-PLAYGROUND-TEST-WORKFLOW-run-notebook-297a8a35ec61d134ca9c496afaf5c824dfffc8468c07197d3b0023f9c3927732-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-LLM-PLAYGROUND-TEST-WORKFLOW-run-notebook-297a8a35ec61d134ca9c496afaf5c824dfffc8468c07197d3b0023f9c3927732 Target:/Users/steven/code/llm_playground ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] input.NetworkAliases ==> [run-notebook]\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] Created container name=act-LLM-PLAYGROUND-TEST-WORKFLOW-run-notebook-297a8a35ec61d134ca9c496afaf5c824dfffc8468c07197d3b0023f9c3927732 id=6b1341f6fa2c42a88f83b622f06f1a67c6995f3fce8b2d0cc8b7fb7b39980954 from image node:16-buster-slim (platform: )\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=ARM64 RUNNER_TEMP=/tmp LANG=C.UTF-8]\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker run image=node:16-buster-slim platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] [DEBUG] Starting container: 6b1341f6fa2c42a88f83b622f06f1a67c6995f3fce8b2d0cc8b7fb7b39980954\r\nError: failed to start container: Error response from daemon: error while creating mount source path '/host_mnt/Users/steven/.docker/run/docker.sock': mkdir /host_mnt/Users/steven/.docker/run/docker.sock: operation not supported\r\n```\n```\n\n\n### Additional information\n\nI can do very basic stuff on my machine like this docker command without sudo. I also tried all of the above with sudo and still errors. \r\n\r\n`docker run -it --rm -v $(pwd):/workspace ubuntu bash`\r\n\r\n","closed":false,"closedAt":null,"comments":[{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"Add this line\r\n```\r\n--container-daemon-socket -\r\n```\r\nto `~/.actrc`\r\n\r\n_This disables mounting the docker socket into the job container and should resolve any problems_","createdAt":"2024-03-05T23:40:21Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":3}}]},{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"This somehow reminds to be a regression due to a recent fix. The usage of non mountable unix sockets on macOS, due to usage of VM's.\r\n\r\nIt's unpredictable...","createdAt":"2024-03-05T23:42:19Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"startakovsky"},"authorAssociation":"NONE","body":"lol it worked, well at least it got passed this issue! Thanks @ChristopherHX \r\n\r\nseems like the whole container thing is not working with Python 3.11 . . . going to decrement until it does work\r\n```\r\n➜ llm_playground git:(main) ✗ vi ~/.actrc\r\n➜ llm_playground git:(main) ✗ act push\r\nINFO[0000] Using docker host 'unix:///Users/steven/.docker/run/docker.sock', and daemon socket '-'\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🚀 Start image=node:16-buster-slim\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker pull image=node:16-buster-slim platform=linux/amd64 username= forcePull=true\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] using DockerAuthConfig authentication for docker pull\r\nINFO[0004] Parallel tasks (0) below minimum, setting to 1\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker create image=node:16-buster-slim platform=linux/amd64 entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker run image=node:16-buster-slim platform=linux/amd64 entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ☁ git clone 'https://github.com/actions/setup-python' # ref=v4\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ☁ git clone 'https://github.com/actions/upload-artifact' # ref=v4\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🧪 Matrix: map[python-version:3.11]\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ⭐ Run Main actions/checkout@v3\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker cp src=/Users/steven/code/llm_playground/. dst=/Users/steven/code/llm_playground\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ✅ Success - Main actions/checkout@v3\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ⭐ Run Main Set up Python\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker cp src=/Users/steven/.cache/act/actions-setup-python@v4/ dst=/var/run/act/actions/actions-setup-python@v4/\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-python@v4/dist/setup/index.js] user= workdir=\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::Python is expected to be installed into /opt/hostedtoolcache\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ❓ ::group::Installed versions\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::Semantic version spec of 3.11 is 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::isExplicit:\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::explicit? false\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::evaluating 0 versions\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::match not found\r\n| Version 3.11 was not found in the local cache\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::Getting manifest from actions/python-versions@main\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.13.0-alpha.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.13.0-alpha.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.13.0-alpha.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.13.0-alpha.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-rc.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-rc.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-rc.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-beta.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-beta.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-beta.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-beta.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.8 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::arm64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::arm64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::arm64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::arm64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::arm64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::arm64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-rc.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-rc.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-beta.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-beta.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-beta.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-beta.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-beta.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.13 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.12 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.11 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.9 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.8 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-rc.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-rc.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-beta.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-beta.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-beta.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-beta.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.18 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.17 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.16 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.15 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.14 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.13 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.12 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.11 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.9 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.8 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.2-rc.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.1-rc.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.0 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.0-rc.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.0-rc.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.0-beta.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.0-beta.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.18 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.17 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.16 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.15 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.14 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.13 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.12 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.11 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.9 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.8 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.0 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.17 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.16 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.15 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.14 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.13 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.12 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.11 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.9 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.8 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.15 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.14 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.13 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.12 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.11 satisfies 3.11\r\n--container-architecture linux/amd64 -\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.9 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.8 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.5.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.5.9 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.5.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.4.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.4.4 satisfies 3.11\r\n--container-architecture linux/am\r\n--container-daemon-socket -\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.3.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.3.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.2.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.1.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.0.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::Unable to locate executable file: lsb_release. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ❗ ::error::The version '3.11' with architecture 'x64' was not found for this operating system.%0AThe list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ❌ Failure - Main Set up Python\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] exitcode '1': failure\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🏁 Job failed\r\nError: Job 'run-notebook' failed\r\n➜ llm_playground git:(main) ✗ vi ~/.actrc\r\n➜ llm_playground git:(main) ✗ act push\r\nINFO[0000] Using docker host 'unix:///Users/steven/.docker/run/docker.sock', and daemon socket '-'\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🚀 Start image=node:16-buster-slim\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker pull image=node:16-buster-slim platform=linux/amd64 - username= forcePull=true\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] using DockerAuthConfig authentication for docker pull\r\nError: Error response from daemon: \"amd64 -\" is an invalid component of \"linux/amd64 -\": platform specifier component must match \"^[A-Za-z0-9_-]+$\": invalid argument\r\n➜ llm_playground git:(main) ✗ vi ~/.actrc\r\n➜ llm_playground git:(main) ✗ act push --container-architecture linux/amd64\r\nINFO[0000] Using docker host 'unix:///Users/steven/.docker/run/docker.sock', and daemon socket '-'\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🚀 Start image=node:16-buster-slim\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker pull image=node:16-buster-slim platform=linux/amd64 username= forcePull=true\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] using DockerAuthConfig authentication for docker pull\r\nINFO[0004] Parallel tasks (0) below minimum, setting to 1\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker create image=node:16-buster-slim platform=linux/amd64 entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker run image=node:16-buster-slim platform=linux/amd64 entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ☁ git clone 'https://github.com/actions/setup-python' # ref=v4\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ☁ git clone 'https://github.com/actions/upload-artifact' # ref=v4\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🧪 Matrix: map[python-version:3.11]\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ⭐ Run Main actions/checkout@v3\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker cp src=/Users/steven/code/llm_playground/. dst=/Users/steven/code/llm_playground\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ✅ Success - Main actions/checkout@v3\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ⭐ Run Main Set up Python\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker cp src=/Users/steven/.cache/act/actions-setup-python@v4/ dst=/var/run/act/actions/actions-setup-python@v4/\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-python@v4/dist/setup/index.js] user= workdir=\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::Python is expected to be installed into /opt/hostedtoolcache\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ❓ ::group::Installed versions\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::Semantic version spec of 3.11 is 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::isExplicit:\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::explicit? false\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::evaluating 0 versions\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::match not found\r\n| Version 3.11 was not found in the local cache\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::Getting manifest from actions/python-versions@main\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.13.0-alpha.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.13.0-alpha.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.13.0-alpha.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.13.0-alpha.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-rc.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-rc.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-rc.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-beta.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-beta.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-beta.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-beta.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.12.0-alpha.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.8 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::arm64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::arm64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::arm64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::arm64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::arm64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::arm64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && darwin===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && linux===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x64===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::x86===x64 && win32===linux\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-rc.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-rc.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-beta.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-beta.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-beta.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-beta.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-beta.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.11.0-alpha.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.13 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.12 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.11 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.9 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.8 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-rc.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-rc.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-beta.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-beta.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-beta.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-beta.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.10.0-alpha.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.18 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.17 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.16 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.15 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.14 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.13 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.12 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.11 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.9 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.8 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.2-rc.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.1-rc.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.0 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.0-rc.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.0-rc.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.0-beta.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.9.0-beta.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.18 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.17 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.16 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.15 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.14 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.13 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.12 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.11 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.9 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.8 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.8.0 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.17 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.16 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.15 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.14 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.13 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.12 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.11 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.9 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.8 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.6 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.3 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.2 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.7.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.15 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.14 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.13 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.12 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.11 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.9 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.8 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.6.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.5.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.5.9 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.5.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.4.10 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.4.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.3.7 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.3.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.2.5 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.1.4 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::check 3.0.1 satisfies 3.11\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 💬 ::debug::Unable to locate executable file: lsb_release. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ❗ ::error::The version '3.11' with architecture 'x64' was not found for this operating system.%0AThe list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] ❌ Failure - Main Set up Python\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] exitcode '1': failure\r\n[LLM PLAYGROUND TEST WORKFLOW/run-notebook] 🏁 Job failed\r\nError: Job 'run-notebook' failed```","createdAt":"2024-03-05T23:59:32Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"You have choosen the small image in the first time setup prompt now you have problems due to doing that.\r\n\r\nUse `-P <label>=<docker-image>:<tag>` to choose a larger one. Important it has to be ubuntu 22.04 or 20.04\r\n\r\nOnly the \"large\" image has the best compatibility\r\n\r\n\"small\" hasn't even the correct linux distro for setup-python","createdAt":"2024-03-06T10:45:33Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":1}}]},{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"Here the link to the docu of the image tags https://nektosact.com/usage/runners.html#use-an-alternative-runner-image","createdAt":"2024-03-06T10:46:08Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"lord-skinner"},"authorAssociation":"NONE","body":"@ChristopherHX Is it possible to update or reinitialize and change the initial setup option?","createdAt":"2024-03-25T22:18:57Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"@lord-skinner Run `act --bug-report` then delete all \"config files\" shown there. You will now be asked again if you skip `-P ...`\r\n\r\nMaybe I propose a cli option for the same usecase...","createdAt":"2024-03-25T23:05:13Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[{"content":"ROCKET","users":{"totalCount":1}}]},{"author":{"login":"lord-skinner"},"authorAssociation":"NONE","body":"> @lord-skinner Run `act --bug-report` then delete all \"config files\" shown there. You will now be asked again if you skip `-P ...`\n> \n> Maybe I propose a cli option for the same usecase...\n\ncli-flag: I was thinking the same\n\n`act init` or `act image-select`","createdAt":"2024-03-25T23:16:44Z","includesCreatedEdit":true,"isMinimized":false,"minimizedReason":"","reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":1}}]}],"createdAt":"2024-03-05T22:06:50Z","id":"I_kwDOCcSpD86BWvcf","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2239,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Error: failed to start container: Error response from daemon: error while creating mount source path","updatedAt":"2024-03-25T23:19:45Z","url":"https://github.com/nektos/act/issues/2239"},{"assignees":[],"author":{"login":"kurtis-casperson"},"body":"### Bug report info\n\n```plain text\nact version: 0.2.60\r\nGOOS: darwin\r\nGOARCH: arm64\r\nNumCPU: 10\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n\t/var/run/docker.sock\r\n\t$HOME/.docker/run/docker.sock\r\nConfig files:\r\n\t/Users/kurtisc/Library/Application Support/act/actrc:\r\n\t\t-P ubuntu-latest=catthehacker/ubuntu:act-latest\r\n\t\t-P ubuntu-22.04=catthehacker/ubuntu:act-22.04\r\n\t\t-P ubuntu-20.04=catthehacker/ubuntu:act-20.04\r\n\t\t-P ubuntu-18.04=catthehacker/ubuntu:act-18.04\r\nBuild info:\r\n\tGo version: go1.22.0\r\n\tModule path: command-line-arguments\r\n\tMain version:\r\n\tMain path:\r\n\tMain checksum:\r\n\tBuild settings:\r\n\t\t-buildmode: exe\r\n\t\t-compiler: gc\r\n\t\t-ldflags: -X main.version=0.2.60\r\n\t\tDefaultGODEBUG: httplaxcontentlength=1,httpmuxgo121=1,panicnil=1,tls10server=1,tlsrsakex=1,tlsunsafeekm=1\r\n\t\tCGO_ENABLED: 1\r\n\t\tCGO_CFLAGS:\r\n\t\tCGO_CPPFLAGS:\r\n\t\tCGO_CXXFLAGS:\r\n\t\tCGO_LDFLAGS:\r\n\t\tGOARCH: arm64\r\n\t\tGOOS: darwin\r\nDocker Engine:\r\n\tEngine version: 25.0.3\r\n\tEngine runtime: runc\r\n\tCgroup version: 2\r\n\tCgroup driver: cgroupfs\r\n\tStorage driver: overlay2\r\n\tRegistry URI: https://index.docker.io/v1/\r\n\tOS: Docker Desktop\r\n\tOS type: linux\r\n\tOS version:\r\n\tOS arch: aarch64\r\n\tOS kernel: 6.6.12-linuxkit\r\n\tOS CPU: 10\r\n\tOS memory: 7841 MB\r\n\tSecurity options:\r\n\t\tname=seccomp,profile=unconfined\r\n\t\tname=cgroupns\n```\n\n\n### Command used with act\n\n```sh\nact push\n```\n\n\n### Describe issue\n\nI am receiving the error :\r\nterraform cloud API token is not set\r\n\r\nThe push command does work with Github actions, so I know the API token is set. \r\n\r\nThis is my first time using act or Docker, so my bad if I have overlooked something easy.\r\n\n\n### Link to GitHub repository\n\nhttps://github.com/kurtis-casperson/aws-cloud-resume\n\n### Workflow content\n\n```yml\nname: 'Terraform Plan'\r\n\r\non: push\r\nenv:\r\n TF_CLOUD_ORGANIZATION: 'kcasperson'\r\n TF_API_TOKEN: '${{ secrets.TF_API_TOKEN }}'\r\n TF_WORKSPACE: 'cloud-resume-workspace'\r\n\r\njobs:\r\n terraform:\r\n if: github.repository != 'hashicorp-education/learn-terraform-github-actions'\r\n name: 'Terraform Plan'\r\n runs-on: ubuntu-latest\r\n permissions:\r\n contents: read\r\n pull-requests: write\r\n steps:\r\n - name: Checkout\r\n uses: actions/checkout@v3\r\n - name: Upload Configuration\r\n uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.0.0\r\n id: plan-upload\r\n with:\r\n workspace: ${{ env.TF_WORKSPACE }}\r\n directory: ${{ env.CONFIG_DIRECTORY }}\r\n speculative: true\n```\n\n\n### Relevant log output\n\n```sh\n[Terraform Plan/Terraform Plan ] 🐳 docker run image=hashicorp/tfci:v1.0.0 platform= entrypoint=[] cmd=[\"tfci\" \"-hostname=\" \"-token=\" \"-organization=\" \"upload\" \"-workspace=cloud-resume-workspace\" \"-directory=\" \"-speculative=true\"] network=\"container:act-Terraform-Plan-Terraform-Plan-62ff29d57a7bf624a59dc60e75768b64313ecf2226633ad2eb8d3d58f4fa74f3\"\r\n[Terraform Plan/Terraform Plan ] [DEBUG] Starting container: 741dde36caea3004c6833dcfbc7f99824eccfae689c39ccb4974ca7131dfc6ab\r\n[Terraform Plan/Terraform Plan ] [DEBUG] Started container: 741dde36caea3004c6833dcfbc7f99824eccfae689c39ccb4974ca7131dfc6ab\r\n| terraform cloud API token is not set\r\n[Terraform Plan/Terraform Plan ] [DEBUG] Return status: 1\r\n[Terraform Plan/Terraform Plan ] [DEBUG] Removed container: 741dde36caea3004c6833dcfbc7f99824eccfae689c39ccb4974ca7131dfc6ab\r\n[Terraform Plan/Terraform Plan ] ❌ Failure - Main Upload Configuration\r\n[Terraform Plan/Terraform Plan ] exit with `FAILURE`: 1\r\n[Terraform Plan/Terraform Plan ] [DEBUG] skipping post step for 'Checkout': no action model available\r\n[Terraform Plan/Terraform Plan ] 🏁 Job failed\r\n[Terraform Plan/Terraform Plan ] [DEBUG] Loading revision from git directory\r\n[Terraform Plan/Terraform Plan ] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Plan/Terraform Plan ] [DEBUG] HEAD points to '1753bcdc0deea5e449b3c38df0a3249de144011b'\r\n[Terraform Plan/Terraform Plan ] [DEBUG] using github ref: refs/heads/main\r\n[Terraform Plan/Terraform Plan ] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] Pulling from hashicorp/tfci :: v1.0.0\r\n[Terraform Apply/Terraform Apply] [DEBUG] Digest: sha256:a0aa9258f77dc46b3eae696fc50e9fe38873ace5dab540f16e99c787e27ec956 ::\r\n[Terraform Apply/Terraform Apply] [DEBUG] Status: Image is up to date for hashicorp/tfci:v1.0.0 ::\r\n[Terraform Apply/Terraform Apply] 🐳 docker create image=hashicorp/tfci:v1.0.0 platform= entrypoint=[] cmd=[\"tfci\" \"-hostname=\" \"-token=\" \"-organization=\" \"upload\" \"-workspace=cloud-resume-workspace\" \"-directory=./\" \"-speculative=false\"] network=\"container:act-Terraform-Apply-Terraform-Apply-b8e8bb1c2cf136f065e3156a88b8e36578b6fa0a1f132441a541b7df56731de6\"\r\n[Terraform Apply/Terraform Apply] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[GITHUB_REPOSITORY=kurtis-casperson/aws-cloud-resume INPUT_SPECULATIVE=false GITHUB_EVENT_PATH=/var/run/act/workflow/event.json GITHUB_STATE=/var/run/act/workflow/statecmd.txt ACTIONS_CACHE_URL=http://10.0.0.225:62648/ GITHUB_JOB=terraform RUNNER_TRACKING_ID= ImageOS=ubuntu20 token= ACT=true GITHUB_ACTIONS=true GITHUB_WORKSPACE=/Users/kurtisc/software-development-mastermind/terraform-config GITHUB_REF_NAME=main GITHUB_REF_TYPE=branch GITHUB_PATH=/var/run/act/workflow/pathcmd.txt GITHUB_ACTION=apply-upload GITHUB_ACTOR=nektos/act INPUT_DIRECTORY=./ CONFIG_DIRECTORY=./ GITHUB_GRAPHQL_URL=https://api.github.com/graphql organization= TF_CLOUD_ORGANIZATION=kcasperson GITHUB_ACTION_REF=v1.0.0 INPUT_WORKSPACE=cloud-resume-workspace GITHUB_STEP_SUMMARY=/var/run/act/workflow/SUMMARY.md INPUT_HOSTNAME= hostname= TF_VAR_api_token=5Oeb9b7x1ZQzOg.atlasv1.7CTxlyDL1obxM752zXOpUUSciOecFFqT4EPaJmpUwOxRiInzagziLDwlkhLx3GOcewc GITHUB_RUN_ID=1 GITHUB_RETENTION_DAYS=0 GITHUB_OUTPUT=/var/run/act/workflow/outputcmd.txt directory=./ workspace=cloud-resume-workspace GITHUB_BASE_REF= GITHUB_SERVER_URL=https://github.com speculative=false GITHUB_ACTION_REPOSITORY=hashicorp/tfc-workflows-github GITHUB_SHA=1753bcdc0deea5e449b3c38df0a3249de144011b GITHUB_API_URL=https://api.github.com INPUT_ORGANIZATION= TF_WORKSPACE=cloud-resume-workspace GITHUB_EVENT_NAME=push GITHUB_REF=refs/heads/main GITHUB_ENV=/var/run/act/workflow/envs.txt CI=true GITHUB_RUN_NUMBER=1 INPUT_TOKEN= GITHUB_REPOSITORY_OWNER=kurtis-casperson RUNNER_PERFLOG=/dev/null GITHUB_HEAD_REF= GITHUB_WORKFLOW=Terraform Apply GITHUB_ACTION_PATH= TF_API_TOKEN= RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=ARM64 RUNNER_TEMP=/tmp] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:hashicorp/tfci:v1.0.0 Volumes:map[] WorkingDir:/Users/kurtisc/software-development-mastermind/terraform-config Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}\r\n[Terraform Apply/Terraform Apply] [DEBUG] Common container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:container:act-Terraform-Apply-Terraform-Apply-b8e8bb1c2cf136f065e3156a88b8e36578b6fa0a1f132441a541b7df56731de6 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-Terraform-Apply-Terraform-Apply-b8e8bb1c2cf136f065e3156a88b8e36578b6fa0a1f132441a541b7df56731de6-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Terraform-Apply-Terraform-Apply-b8e8bb1c2cf136f065e3156a88b8e36578b6fa0a1f132441a541b7df56731de6 Target:/Users/kurtisc/software-development-mastermind/terraform-config ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-toolcache Target:/opt/hostedtoolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}\r\n[Terraform Apply/Terraform Apply] [DEBUG] input.NetworkAliases ==> []\r\n[Terraform Apply/Terraform Apply] [DEBUG] Created container name=act-Terraform-Apply-Terraform-Apply-b8e8bb1c2cf136f065e3156a88b-1da2465de0ab6727b38649d01b459b29b20776bbfa9cdf74e18ad5edc69d6e4e id=3d3aba605e7e65c7aafa95daa613d654561e595b80e14745e395889e5530f117 from image hashicorp/tfci:v1.0.0 (platform: )\r\n[Terraform Apply/Terraform Apply] [DEBUG] ENV ==> [GITHUB_REPOSITORY=kurtis-casperson/aws-cloud-resume INPUT_SPECULATIVE=false GITHUB_EVENT_PATH=/var/run/act/workflow/event.json GITHUB_STATE=/var/run/act/workflow/statecmd.txt ACTIONS_CACHE_URL=http://10.0.0.225:62648/ GITHUB_JOB=terraform RUNNER_TRACKING_ID= ImageOS=ubuntu20 token= ACT=true GITHUB_ACTIONS=true GITHUB_WORKSPACE=/Users/kurtisc/software-development-mastermind/terraform-config GITHUB_REF_NAME=main GITHUB_REF_TYPE=branch GITHUB_PATH=/var/run/act/workflow/pathcmd.txt GITHUB_ACTION=apply-upload GITHUB_ACTOR=nektos/act INPUT_DIRECTORY=./ CONFIG_DIRECTORY=./ GITHUB_GRAPHQL_URL=https://api.github.com/graphql organization= TF_CLOUD_ORGANIZATION=kcasperson GITHUB_ACTION_REF=v1.0.0 INPUT_WORKSPACE=cloud-resume-workspace GITHUB_STEP_SUMMARY=/var/run/act/workflow/SUMMARY.md INPUT_HOSTNAME= hostname= TF_VAR_api_token=5Oeb9b7x1ZQzOg.atlasv1.7CTxlyDL1obxM752zXOpUUSciOecFFqT4EPaJmpUwOxRiInzagziLDwlkhLx3GOcewc GITHUB_RUN_ID=1 GITHUB_RETENTION_DAYS=0 GITHUB_OUTPUT=/var/run/act/workflow/outputcmd.txt directory=./ workspace=cloud-resume-workspace GITHUB_BASE_REF= GITHUB_SERVER_URL=https://github.com speculative=false GITHUB_ACTION_REPOSITORY=hashicorp/tfc-workflows-github GITHUB_SHA=1753bcdc0deea5e449b3c38df0a3249de144011b GITHUB_API_URL=https://api.github.com INPUT_ORGANIZATION= TF_WORKSPACE=cloud-resume-workspace GITHUB_EVENT_NAME=push GITHUB_REF=refs/heads/main GITHUB_ENV=/var/run/act/workflow/envs.txt CI=true GITHUB_RUN_NUMBER=1 INPUT_TOKEN= GITHUB_REPOSITORY_OWNER=kurtis-casperson RUNNER_PERFLOG=/dev/null GITHUB_HEAD_REF= GITHUB_WORKFLOW=Terraform Apply GITHUB_ACTION_PATH= TF_API_TOKEN= RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=ARM64 RUNNER_TEMP=/tmp]\r\n[Terraform Apply/Terraform Apply] 🐳 docker run image=hashicorp/tfci:v1.0.0 platform= entrypoint=[] cmd=[\"tfci\" \"-hostname=\" \"-token=\" \"-organization=\" \"upload\" \"-workspace=cloud-resume-workspace\" \"-directory=./\" \"-speculative=false\"] network=\"container:act-Terraform-Apply-Terraform-Apply-b8e8bb1c2cf136f065e3156a88b8e36578b6fa0a1f132441a541b7df56731de6\"\r\n[Terraform Apply/Terraform Apply] [DEBUG] Starting container: 3d3aba605e7e65c7aafa95daa613d654561e595b80e14745e395889e5530f117\r\n[Terraform Apply/Terraform Apply] [DEBUG] Started container: 3d3aba605e7e65c7aafa95daa613d654561e595b80e14745e395889e5530f117\r\n| terraform cloud API token is not set\r\n[Terraform Apply/Terraform Apply] [DEBUG] Return status: 1\r\n[Terraform Apply/Terraform Apply] [DEBUG] Removed container: 3d3aba605e7e65c7aafa95daa613d654561e595b80e14745e395889e5530f117\r\n[Terraform Apply/Terraform Apply] ❌ Failure - Main Upload Configuration\r\n[Terraform Apply/Terraform Apply] exit with `FAILURE`: 1\r\n[Terraform Apply/Terraform Apply] [DEBUG] Loading revision from git directory\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] HEAD points to '1753bcdc0deea5e449b3c38df0a3249de144011b'\r\n[Terraform Apply/Terraform Apply] [DEBUG] using github ref: refs/heads/main\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] Loading revision from git directory\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] HEAD points to '1753bcdc0deea5e449b3c38df0a3249de144011b'\r\n[Terraform Apply/Terraform Apply] [DEBUG] using github ref: refs/heads/main\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] Loading revision from git directory\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] HEAD points to '1753bcdc0deea5e449b3c38df0a3249de144011b'\r\n[Terraform Apply/Terraform Apply] [DEBUG] using github ref: refs/heads/main\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] expression '${{ env.TF_WORKSPACE }}' rewritten to 'format('{0}', env.TF_WORKSPACE)'\r\n[Terraform Apply/Terraform Apply] [DEBUG] evaluating expression 'format('{0}', env.TF_WORKSPACE)'\r\n[Terraform Apply/Terraform Apply] [DEBUG] expression 'format('{0}', env.TF_WORKSPACE)' evaluated to '%!t(string=cloud-resume-workspace)'\r\n[Terraform Apply/Terraform Apply] [DEBUG] expression '${{ steps.apply-upload.outputs.configuration_version_id }}' rewritten to 'format('{0}', steps.apply-upload.outputs.configuration_version_id)'\r\n[Terraform Apply/Terraform Apply] [DEBUG] evaluating expression 'format('{0}', steps.apply-upload.outputs.configuration_version_id)'\r\n[Terraform Apply/Terraform Apply] [DEBUG] expression 'format('{0}', steps.apply-upload.outputs.configuration_version_id)' evaluated to '%!t(string=)'\r\n[Terraform Apply/Terraform Apply] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.0.0.225:62648/ CI:true CONFIG_DIRECTORY:./ GITHUB_ACTION:apply-run GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v1.0.0 GITHUB_ACTION_REPOSITORY:hashicorp/tfc-workflows-github 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:terraform GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:kurtis-casperson/aws-cloud-resume GITHUB_REPOSITORY_OWNER:kurtis-casperson GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:1753bcdc0deea5e449b3c38df0a3249de144011b GITHUB_WORKFLOW:Terraform Apply GITHUB_WORKSPACE:/Users/kurtisc/software-development-mastermind/terraform-config INPUT_CONFIGURATION_VERSION: INPUT_WORKSPACE:cloud-resume-workspace ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: TF_API_TOKEN: TF_CLOUD_ORGANIZATION:kcasperson TF_VAR_api_token:5Oeb9b7x1ZQzOg.atlasv1.7CTxlyDL1obxM752zXOpUUSciOecFFqT4EPaJmpUwOxRiInzagziLDwlkhLx3GOcewc TF_WORKSPACE:cloud-resume-workspace]\r\n[Terraform Apply/Terraform Apply] [DEBUG] Loading revision from git directory\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] HEAD points to '1753bcdc0deea5e449b3c38df0a3249de144011b'\r\n[Terraform Apply/Terraform Apply] [DEBUG] using github ref: refs/heads/main\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] Loading revision from git directory\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] HEAD points to '1753bcdc0deea5e449b3c38df0a3249de144011b'\r\n[Terraform Apply/Terraform Apply] [DEBUG] using github ref: refs/heads/main\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] evaluating expression ''\r\n[Terraform Apply/Terraform Apply] [DEBUG] expression '' evaluated to 'false'\r\n[Terraform Apply/Terraform Apply] [DEBUG] Skipping step 'Create Apply Run' due to ''\r\n[Terraform Apply/Terraform Apply] [DEBUG] Loading revision from git directory\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] HEAD points to '1753bcdc0deea5e449b3c38df0a3249de144011b'\r\n[Terraform Apply/Terraform Apply] [DEBUG] using github ref: refs/heads/main\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] Loading revision from git directory\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] HEAD points to '1753bcdc0deea5e449b3c38df0a3249de144011b'\r\n[Terraform Apply/Terraform Apply] [DEBUG] using github ref: refs/heads/main\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] Loading revision from git directory\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] HEAD points to '1753bcdc0deea5e449b3c38df0a3249de144011b'\r\n[Terraform Apply/Terraform Apply] [DEBUG] using github ref: refs/heads/main\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] expression 'Apply Run from GitHub Actions CI ${{ github.sha }}' rewritten to 'format('Apply Run from GitHub Actions CI {0}', github.sha)'\r\n[Terraform Apply/Terraform Apply] [DEBUG] evaluating expression 'format('Apply Run from GitHub Actions CI {0}', github.sha)'\r\n[Terraform Apply/Terraform Apply] [DEBUG] expression 'format('Apply Run from GitHub Actions CI {0}', github.sha)' evaluated to '%!t(string=Apply Run from GitHub Actions CI 1753bcdc0deea5e449b3c38df0a3249de144011b)'\r\n[Terraform Apply/Terraform Apply] [DEBUG] expression '${{ steps.apply-run.outputs.run_id }}' rewritten to 'format('{0}', steps.apply-run.outputs.run_id)'\r\n[Terraform Apply/Terraform Apply] [DEBUG] evaluating expression 'format('{0}', steps.apply-run.outputs.run_id)'\r\n[Terraform Apply/Terraform Apply] [DEBUG] expression 'format('{0}', steps.apply-run.outputs.run_id)' evaluated to '%!t(string=)'\r\n[Terraform Apply/Terraform Apply] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://10.0.0.225:62648/ CI:true CONFIG_DIRECTORY:./ GITHUB_ACTION:apply GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v1.0.0 GITHUB_ACTION_REPOSITORY:hashicorp/tfc-workflows-github 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:terraform GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:kurtis-casperson/aws-cloud-resume GITHUB_REPOSITORY_OWNER:kurtis-casperson GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:1753bcdc0deea5e449b3c38df0a3249de144011b GITHUB_WORKFLOW:Terraform Apply GITHUB_WORKSPACE:/Users/kurtisc/software-development-mastermind/terraform-config INPUT_COMMENT:Apply Run from GitHub Actions CI 1753bcdc0deea5e449b3c38df0a3249de144011b INPUT_RUN: ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: TF_API_TOKEN: TF_CLOUD_ORGANIZATION:kcasperson TF_VAR_api_token:5Oeb9b7x1ZQzOg.atlasv1.7CTxlyDL1obxM752zXOpUUSciOecFFqT4EPaJmpUwOxRiInzagziLDwlkhLx3GOcewc TF_WORKSPACE:cloud-resume-workspace]\r\n[Terraform Apply/Terraform Apply] [DEBUG] Loading revision from git directory\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] HEAD points to '1753bcdc0deea5e449b3c38df0a3249de144011b'\r\n[Terraform Apply/Terraform Apply] [DEBUG] using github ref: refs/heads/main\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] Loading revision from git directory\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] HEAD points to '1753bcdc0deea5e449b3c38df0a3249de144011b'\r\n[Terraform Apply/Terraform Apply] [DEBUG] using github ref: refs/heads/main\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] evaluating expression 'fromJSON(steps.apply-run.outputs.payload).data.attributes.actions.IsConfirmable'\r\n[Terraform Apply/Terraform Apply] [DEBUG] expression 'fromJSON(steps.apply-run.outputs.payload).data.attributes.actions.IsConfirmable' evaluated to 'false'\r\n[Terraform Apply/Terraform Apply] [DEBUG] Skipping step 'Apply' due to 'fromJSON(steps.apply-run.outputs.payload).data.attributes.actions.IsConfirmable'\r\n[Terraform Apply/Terraform Apply] [DEBUG] skipping post step for 'Apply'; main step was skipped\r\n[Terraform Apply/Terraform Apply] [DEBUG] skipping post step for 'Create Apply Run'; main step was skipped\r\n[Terraform Apply/Terraform Apply] [DEBUG] skipping post step for 'Checkout': no action model available\r\n[Terraform Apply/Terraform Apply] 🏁 Job failed\r\n[Terraform Apply/Terraform Apply] [DEBUG] Loading revision from git directory\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\n[Terraform Apply/Terraform Apply] [DEBUG] HEAD points to '1753bcdc0deea5e449b3c38df0a3249de144011b'\r\n[Terraform Apply/Terraform Apply] [DEBUG] using github ref: refs/heads/main\r\n[Terraform Apply/Terraform Apply] [DEBUG] Found revision: 1753bcdc0deea5e449b3c38df0a3249de144011b\r\nError: Job 'Terraform Apply' failed\n```\n\n\n### Additional information\n\n_No response_","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-03-01T22:16:28Z","id":"I_kwDOCcSpD86BAEO8","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2233,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"terraform cloud API token is not set ","updatedAt":"2024-03-01T22:17:10Z","url":"https://github.com/nektos/act/issues/2233"},{"assignees":[],"author":{"login":"yaleman"},"body":"### Bug report info\n\n```plain text\nact version: 0.2.59\r\nGOOS: darwin\r\nGOARCH: arm64\r\nNumCPU: 12\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n\t/var/run/docker.sock\r\n\t$HOME/.docker/run/docker.sock\r\nConfig files: \r\n\t/Users/yaleman/.actrc:\r\n\t\t-P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest\r\n\t\t-P ubuntu-22.04=ghcr.io/catthehacker/ubuntu:act-22.04\r\n\t\t-P ubuntu-20.04=ghcr.io/catthehacker/ubuntu:act-20.04\r\n\t\t-P ubuntu-18.04=ghcr.io/catthehacker/ubuntu:act-18.04\r\nBuild info:\r\n\tGo version: go1.21.6\r\n\tModule path: command-line-arguments\r\n\tMain version: \r\n\tMain path: \r\n\tMain checksum: \r\n\tBuild settings:\r\n\t\t-buildmode: exe\r\n\t\t-compiler: gc\r\n\t\t-ldflags: -X main.version=0.2.59\r\n\t\tDefaultGODEBUG: panicnil=1\r\n\t\tCGO_ENABLED: 1\r\n\t\tCGO_CFLAGS: \r\n\t\tCGO_CPPFLAGS: \r\n\t\tCGO_CXXFLAGS: \r\n\t\tCGO_LDFLAGS: \r\n\t\tGOARCH: arm64\r\n\t\tGOOS: darwin\r\nDocker Engine:\r\n\tEngine version: 25.0.3\r\n\tEngine runtime: runc\r\n\tCgroup version: 2\r\n\tCgroup driver: cgroupfs\r\n\tStorage driver: overlay2\r\n\tRegistry URI: https://index.docker.io/v1/\r\n\tOS: OrbStack\r\n\tOS type: linux\r\n\tOS version: \r\n\tOS arch: aarch64\r\n\tOS kernel: 6.5.13-orbstack-00122-g57b8027e2387\r\n\tOS CPU: 12\r\n\tOS memory: 15969 MB\r\n\tSecurity options:\r\n\t\tname=seccomp,profile=builtin\r\n\t\tname=cgroupns\n```\n\n\n### Command used with act\n\n```sh\ngit clone https://github.com/kanidm/kanidm\r\ncd kanidm\r\nact push -j wasm_test --container-architecture linux/amd64\n```\n\n\n### Describe issue\n\nI expected not to see the loads of repeated warnings at the start\n\n### Link to GitHub repository\n\nhttps://github.com/kanidm/kanidm\n\n### Workflow content\n\n```yml\n---\r\nname: WASM Testing\r\n\r\n# Trigger the workflow on push or pull request\r\n\"on\": [push, pull_request]\r\n\r\nenv:\r\n SCCACHE_GHA_ENABLED: \"true\"\r\n RUSTC_WRAPPER: \"sccache\"\r\n\r\nconcurrency:\r\n group: ${{ github.workflow }}-${{ github.ref }}\r\n cancel-in-progress: true\r\njobs:\r\n wasm_test:\r\n runs-on: ubuntu-latest\r\n steps:\r\n - uses: actions/checkout@v4\r\n # - name: Check arch\r\n # run: |\r\n # uname -a\r\n - name: Setup sccache\r\n uses: mozilla-actions/sccache-action@v0.0.4\r\n with:\r\n version: \"v0.4.2\"\r\n - name: Install Rust\r\n uses: dtolnay/rust-toolchain@stable\r\n - name: Install wasm-pack\r\n run: cargo install wasm-pack\r\n - name: Install dependencies\r\n run: |\r\n scripts/install_ubuntu_dependencies.sh\r\n # https://github.com/browser-actions/setup-chrome\r\n - name: Install Chrome Headless\r\n uses: browser-actions/setup-chrome@latest\r\n with:\r\n chrome-version: latest\r\n # https://github.com/marketplace/actions/setup-chromedriver\r\n - uses: nanasess/setup-chromedriver@v2\r\n # with:\r\n # Optional: do not specify to match Chrome's version\r\n # chromedriver-version: '88.0.4324.96'\r\n\r\n # - run: make webui\r\n - name: \"Run wasm-pack test\"\r\n # https://rustwasm.github.io/docs/wasm-bindgen/wasm-bindgen-test/browsers.html\r\n run: make webui/test\r\n continue-on-error: true\r\n\r\n - name: \"Run webdriver tests\"\r\n run: |\r\n chromedriver &\r\n cargo test -p kanidmd_testkit --features webdriver test_webdriver\r\n env:\r\n DISPLAY: \":99\"\n```\n\n\n### Relevant log output\n\n```sh\nact push -j wasm_test --container-architecture linux/amd64\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\nWARN[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\r\n[WASM Testing/wasm_test] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-latest\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1\r\n[WASM Testing/wasm_test] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-latest platform=linux/amd64 username= forcePull=true\r\n[WASM Testing/wasm_test] using DockerAuthConfig authentication for docker pull\n```\n\n\n### Additional information\n\nThis happens in all repos I've tested, even when running `act --list`:\r\n\r\n- https://github.com/yaleman/github_linter\r\n- https://github.com/yaleman/kanidm-profiles ","closed":false,"closedAt":null,"comments":[{"author":{"login":"BlackDex"},"authorAssociation":"CONTRIBUTOR","body":"I have the exact same, while it still run all available stages/workflows.\r\n","createdAt":"2024-03-14T11:00:25Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]}],"createdAt":"2024-02-28T08:04:14Z","id":"I_kwDOCcSpD86ApchH","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2232,"projectCards":[],"reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":1}}],"state":"OPEN","title":"Many lines of \"Could not find any stages to run\" on run","updatedAt":"2024-03-14T11:00:26Z","url":"https://github.com/nektos/act/issues/2232"},{"assignees":[],"author":{"login":"phoolish"},"body":"### Bug report info\r\n\r\n```plain text\r\nact\r\n```\r\n\r\n\r\n### Command used with act\r\n\r\n```sh\r\nact pull_request\r\n```\r\n\r\n\r\n### Describe issue\r\n\r\nMy workflow runs fine locally with act, but when I run it remotely I get this error `Required property is missing: shell`. This is a reference to run steps requiring `shell` key to be set in composite actions. [Metadata Docs](https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runsstepsshell). act seems to ignore the requirement and works as expected whether it is set or not.\r\n\r\n```\r\n- name: Set Greeting\r\n run: echo \"Hello $INPUT_WHO_TO_GREET.\"\r\n shell: bash\r\n```\r\n\r\n### Link to GitHub repository\r\n\r\n_No response_\r\n\r\n### Workflow content\r\n\r\n```yml\r\n# .github/actions/run-in-image/action.yaml\r\n---\r\nname: 'Run command in compose image'\r\ndescription: 'Run Bash Command in docker compose container and output tests results (when necessary)'\r\ninputs:\r\n bash-command:\r\n description: 'Bash to command to run in the container'\r\n required: true\r\n type: string\r\n docker-service:\r\n default: app\r\n description: 'Docker compose service to run the command on'\r\n required: false\r\n type: string\r\n test-report-path:\r\n default: ''\r\n description: 'If a report path is provided, output test-report to github actions'\r\n type: string\r\n\r\nruns:\r\n using: 'composite'\r\n steps:\r\n - name: Run BASH command on ${{ inputs.docker-service }}\r\n run: |\r\n docker compose run ${{ inputs.docker-service }} bash -c \"${{ inputs.bash-command }}\"\r\n - name: Test Report\r\n uses: mikepenz/action-junit-report@v4\r\n if: ${{ inputs.test-report-path != '' && github.actor != 'nektos/act' && (success() || failure()) }}\r\n with:\r\n name: test-results\r\n report_paths: ${{ inputs.test-report-path }}\r\n# .github/workflows/test.yaml\r\n---\r\nname: Test Image\r\n\r\non:\r\n pull_request:\r\n branches:\r\n - develop\r\n push:\r\n branches:\r\n - develop\r\n\r\nenv:\r\n COMPOSE_FILE: ${{ github.actor == 'nektos/act' && 'compose.test.yaml' || 'compose.test.linux.yaml' }}\r\n IMAGE_TAG: ga-${{ github.event.number }}\r\n\r\npermissions:\r\n id-token: write\r\n contents: read\r\n\r\nconcurrency:\r\n group: ${{ github.workflow }}-${{ github.ref }}\r\n cancel-in-progress: true\r\n\r\njobs:\r\n bundle_check:\r\n name: Bundle Check\r\n runs-on: ubuntu-latest\r\n env:\r\n COMPOSE_PROJECT_NAME: bundle_check\r\n steps:\r\n - name: Checkout\r\n uses: actions/checkout@v3\r\n - uses: ./.github/actions/run-in-image\r\n with:\r\n bash-command: \"bundle check --verbose\"\r\n docker-service: app_init\r\n```\r\n\r\n\r\n### Relevant log output\r\n\r\n```sh\r\nNone\r\n```\r\n\r\n\r\n### Additional information\r\n\r\n_No response_","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-02-23T21:30:21Z","id":"I_kwDOCcSpD86AQmWa","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2227,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Composite Action Required property is missing: shell","updatedAt":"2024-02-23T21:42:09Z","url":"https://github.com/nektos/act/issues/2227"},{"assignees":[],"author":{"login":"nnyiri"},"body":"### Bug report info\r\n\r\n```plain text\r\nact version: 0.2.59\r\nGOOS: linux\r\nGOARCH: amd64\r\nNumCPU: 12\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n /var/run/docker.sock\r\nConfig files: \r\n /home/ubuntu/.actrc:\r\n -P ubuntu-latest=catthehacker/ubuntu:act-latest\r\n -P ubuntu-22.04=catthehacker/ubuntu:act-22.04\r\n -P ubuntu-20.04=catthehacker/ubuntu:act-20.04\r\n -P ubuntu-18.04=catthehacker/ubuntu:act-18.04\r\nBuild info:\r\n Go version: go1.20.13\r\n Module path: github.com/nektos/act\r\n Main version: (devel)\r\n Main path: github.com/nektos/act\r\n Main checksum: \r\n Build settings:\r\n -buildmode: exe\r\n -compiler: gc\r\n -trimpath: true\r\n CGO_ENABLED: 0\r\n GOARCH: amd64\r\n GOOS: linux\r\n GOAMD64: v1\r\n vcs: git\r\n vcs.revision: e8856f0fb00fcdd16eef2325b845f55f5d346f51\r\n vcs.time: 2023-08-21T16:17:06Z\r\n vcs.modified: true\r\nDocker Engine:\r\n Engine version: 25.0.3\r\n Engine runtime: runc\r\n Cgroup version: 1\r\n Cgroup driver: cgroupfs\r\n Storage driver: overlay2\r\n Registry URI: https://index.docker.io/v1/\r\n OS: Docker Desktop\r\n OS type: linux\r\n OS version: \r\n OS arch: x86_64\r\n OS kernel: 5.15.133.1-microsoft-standard-WSL2\r\n OS CPU: 12\r\n OS memory: 15959 MB\r\n Security options:\r\n name=seccomp,profile=unconfined\r\n```\r\n\r\n\r\n### Command used with act\r\n\r\n```sh\r\ngh act --pull=false -s GITHUB_TOKEN=\"$(gh auth token)\" push -e ./local/action.json\r\n```\r\n\r\n\r\n### Describe issue\r\n\r\nI have a composite action which uses another action(appleboy/ssh-action@v1.0.0), which creates a container.\r\nI can use it inside a reusable workflow (deploy)\r\nBut if I call the workflow from another workflow, the container creation fails.\r\nIt work altough if it is run by github\r\nThe structure is the following:\r\nWorkflow \"main\" runs on push and call the reusable WF \"deploy\".\r\nWF \"deploy\" calls the composite action.\r\nThe composite action has a step where a container will be created \r\nThe test action:\r\n```\r\nname: \"test composite action\"\r\nruns:\r\n using: \"composite\"\r\n steps:\r\n - shell: bash\r\n run: |\r\n echo \"Composite action started\"\r\n\r\n - uses: actions/hello-world-docker-action@v2\r\n with:\r\n who-to-greet: 'Mona the Octocat'\r\n```\r\n\r\n### Link to GitHub repository\r\n\r\nhttps://github.com/atlas-it-gmbh/test-realm\r\n\r\n### Workflow content\r\n\r\n```yml\r\n# WF Main\r\n\r\nname: \"main\"\r\non:\r\n push:\r\n branches: [ \"main\", \"dev\" ]\r\njobs:\r\n deployment:\r\n uses: ./.github/workflows/deploy.yml\r\n secrets: inherit\r\n\r\n```\r\n\r\n# WF Deploy\r\n```\r\nname: \"deploy\"\r\non:\r\n workflow_call:\r\njobs:\r\n deploy:\r\n runs-on: ubuntu-latest\r\n steps:\r\n - name: Checkout\r\n uses: actions/checkout@v4\r\n \r\n - name: test\r\n uses: atlas-it-gmbh/actions/test@dev\r\n```\r\n```\r\n\r\n\r\n### Relevant log output\r\n\r\n```sh\r\nDEBU[0000] Loading environment from /home/ubuntu/test-realm/.env \r\nDEBU[0000] Loading action inputs from /home/ubuntu/test-realm/.input \r\nDEBU[0000] Loading secrets from /home/ubuntu/test-realm/.secrets \r\nDEBU[0000] Loading vars from /home/ubuntu/test-realm/.vars \r\nDEBU[0000] Conditional GET for notices etag=f7b5f688-d34e-49a8-a02d-1aff88aaa23e \r\nDEBU[0000] Evaluated matrix inclusions: map[] \r\nDEBU[0000] Loading workflows from '/home/ubuntu/test-realm/.github/workflows' \r\nDEBU[0000] Loading workflows recursively \r\nDEBU[0000] Found workflow 'deploy.yml' in '/home/ubuntu/test-realm/.github/workflows/deploy.yml' \r\nDEBU[0000] Found workflow 'main.yml' in '/home/ubuntu/test-realm/.github/workflows/main.yml' \r\nDEBU[0000] Reading workflow '/home/ubuntu/test-realm/.github/workflows/deploy.yml' \r\nDEBU[0000] Reading workflow '/home/ubuntu/test-realm/.github/workflows/main.yml' \r\nDEBU[0000] Using first passed in arguments event for filtering: push \r\nDEBU[0000] Preparing plan for a event: push \r\nDEBU[0000] Using first passed in arguments event: push \r\nDEBU[0000] Planning jobs for event: push \r\nDEBU[0000] Reading event.json from /home/ubuntu/test-realm/local/action.json \r\nDEBU[0000] gc: 2024-02-15 17:21:25.292409066 +0100 CET m=+0.006167666 module=artifactcache\r\nDEBU[0000] Plan Stages: [0xc0003726f0] \r\nDEBU[0000] Stages Runs: [deployment] \r\nDEBU[0000] Job.Name: deployment \r\nDEBU[0000] Job.RawNeeds: {0 0 <nil> [] 0 0} \r\nDEBU[0000] Job.RawRunsOn: {0 0 <nil> [] 0 0} \r\nDEBU[0000] Job.Env: {0 0 <nil> [] 0 0} \r\nDEBU[0000] Job.If: {0 0 success() <nil> [] 0 0} \r\nDEBU[0000] Job.TimeoutMinutes: \r\nDEBU[0000] Job.Services: map[] \r\nDEBU[0000] Job.Strategy: <nil> \r\nDEBU[0000] Job.RawContainer: {0 0 <nil> [] 0 0} \r\nDEBU[0000] Job.Defaults.Run.Shell: \r\nDEBU[0000] Job.Defaults.Run.WorkingDirectory: \r\nDEBU[0000] Job.Outputs: map[] \r\nDEBU[0000] Job.Uses: ./.github/workflows/deploy.yml \r\nDEBU[0000] Job.With: map[] \r\nDEBU[0000] Job.Result: \r\nDEBU[0000] Empty Strategy, matrixes=[map[]] \r\nDEBU[0000] Job Matrices: [map[]] \r\nDEBU[0000] Runner Matrices: map[] \r\nDEBU[0000] Final matrix after applying user inclusions '[map[]]' \r\nDEBU[0000] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480 \r\nDEBU[0000] Detected CPUs: 12 \r\n[main/deployment] [DEBUG] evaluating expression 'success()'\r\n[main/deployment] [DEBUG] expression 'success()' evaluated to 'true'\r\nDEBU[0000] Loading workflow '/home/ubuntu/test-realm/.github/workflows/deploy.yml' \r\nDEBU[0000] Reading workflow '/home/ubuntu/test-realm/.github/workflows/deploy.yml' \r\nDEBU[0000] Reading event.json from /home/ubuntu/test-realm/local/action.json \r\nDEBU[0000] Plan Stages: [0xc000372f60] \r\nDEBU[0000] Stages Runs: [deploy] \r\nDEBU[0000] Job.Name: deploy \r\nDEBU[0000] Job.RawNeeds: {0 0 <nil> [] 0 0} \r\nDEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest <nil> [] 6 14} \r\nDEBU[0000] Job.Env: {0 0 <nil> [] 0 0} \r\nDEBU[0000] Job.If: {0 0 success() <nil> [] 0 0} \r\nDEBU[0000] Job.Steps: Checkout \r\nDEBU[0000] Job.Steps: test \r\nDEBU[0000] Job.TimeoutMinutes: \r\nDEBU[0000] Job.Services: map[] \r\nDEBU[0000] Job.Strategy: <nil> \r\nDEBU[0000] Job.RawContainer: {0 0 <nil> [] 0 0} \r\nDEBU[0000] Job.Defaults.Run.Shell: \r\nDEBU[0000] Job.Defaults.Run.WorkingDirectory: \r\nDEBU[0000] Job.Outputs: map[] \r\nDEBU[0000] Job.Uses: \r\nDEBU[0000] Job.With: map[] \r\nDEBU[0000] Job.Result: \r\nDEBU[0000] Empty Strategy, matrixes=[map[]] \r\nDEBU[0000] Job Matrices: [map[]] \r\nDEBU[0000] Runner Matrices: map[] \r\nDEBU[0000] Final matrix after applying user inclusions '[map[]]' \r\n[main/deployment] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\nDEBU[0000] Detected CPUs: 12 \r\n[deployment/deploy/deploy] [DEBUG] evaluating expression 'success()'\r\n[deployment/deploy/deploy] [DEBUG] expression 'success()' evaluated to 'true'\r\n[deployment/deploy/deploy] 🚀 Start image=catthehacker/ubuntu:act-latest\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[deployment/deploy/deploy] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=false\r\n[deployment/deploy/deploy] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest\r\n[deployment/deploy/deploy] [DEBUG] Image exists? true\r\n[deployment/deploy/deploy] [DEBUG] Removed container: 714462c4463102017b6b8386d5a8bc3aa7a3a75a62023217803b7d474b604a60\r\n[deployment/deploy/deploy] [DEBUG] 🐳 docker volume rm act-deployment-deploy-deploy-37f0072359fbee5e76eaa83135fa84e904356a0a57292c7af3a359b167ec503e\r\n[deployment/deploy/deploy] [DEBUG] 🐳 docker volume rm act-deployment-deploy-deploy-37f0072359fbee5e76eaa83135fa84e904356a0a57292c7af3a359b167ec503e-env\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[deployment/deploy/deploy] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[deployment/deploy/deploy] [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/ubuntu/test-realm Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}\r\n[deployment/deploy/deploy] [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-deployment-deploy-deploy-37f0072359fbee5e76eaa83135fa84e904356a0a57292c7af3a359b167ec503e-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-deployment-deploy-deploy-37f0072359fbee5e76eaa83135fa84e904356a0a57292c7af3a359b167ec503e Target:/home/ubuntu/test-realm ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-toolcache Target:/opt/hostedtoolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}\r\n[deployment/deploy/deploy] [DEBUG] input.NetworkAliases ==> [deploy]\r\n[deployment/deploy/deploy] [DEBUG] Created container name=act-deployment-deploy-deploy-37f0072359fbee5e76eaa83135fa84e904356a0a57292c7af3a359b167ec503e id=3340fb53148b1e60b9bb95f7ec49dff6a773c9dbc6ee95ce5be72d6df644f4e2 from image catthehacker/ubuntu:act-latest (platform: )\r\n[deployment/deploy/deploy] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]\r\n[deployment/deploy/deploy] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[deployment/deploy/deploy] [DEBUG] Starting container: 3340fb53148b1e60b9bb95f7ec49dff6a773c9dbc6ee95ce5be72d6df644f4e2\r\n[deployment/deploy/deploy] [DEBUG] Started container: 3340fb53148b1e60b9bb95f7ec49dff6a773c9dbc6ee95ce5be72d6df644f4e2\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/event.json len:33\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Extracting content to '/var/run/act/'\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Skipping local actions/checkout because workdir was already copied\r\n[deployment/deploy/deploy] [DEBUG] skip pre step for 'Checkout': no action model available\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] ☁ git clone 'https://github.com/atlas-it-gmbh/actions' # ref=dev\r\n[deployment/deploy/deploy] [DEBUG] cloning https://github.com/atlas-it-gmbh/actions to /home/ubuntu/.cache/act/atlas-it-gmbh-actions-test@dev\r\nDEBU[0000] Saving notices etag=f7b5f688-d34e-49a8-a02d-1aff88aaa23e \r\nDEBU[0000] No new notices \r\n[deployment/deploy/deploy] [DEBUG] Provided ref is not a sha. Checking out branch before pulling changes\r\n[deployment/deploy/deploy] [DEBUG] Unable to pull refs/heads/dev: non-fast-forward update\r\n[deployment/deploy/deploy] [DEBUG] Cloned https://github.com/atlas-it-gmbh/actions to /home/ubuntu/.cache/act/atlas-it-gmbh-actions-test@dev\r\n[deployment/deploy/deploy] [DEBUG] Provided ref is not a sha. Updating branch ref after pull\r\n[deployment/deploy/deploy] [DEBUG] Checked out dev\r\n[deployment/deploy/deploy] [DEBUG] Read action &{test composite action map[] map[] {composite map[] always() always() [] [{ {0 0 <nil> [] 0 0} echo \"Composite action started\"\r\n bash {0 0 <nil> [] 0 0} map[] } { {0 0 <nil> [] 0 0} actions/hello-world-docker-action@v2 {0 0 <nil> [] 0 0} map[who-to-greet:Mona the Octocat] }]} { }} from 'Unknown'\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://172.26.128.29:42791/ CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:dev GITHUB_ACTION_REPOSITORY:atlas-it-gmbh/actions 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:deploy GITHUB_REF:refs/heads/local GITHUB_REF_NAME:local GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:atlas-it-gmbh/test-realm GITHUB_REPOSITORY_OWNER:atlas-it-gmbh GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:edd014a2ef037f1880b6f85c9816f9e2ac367480 GITHUB_WORKFLOW:deploy GITHUB_WORKSPACE:/home/ubuntu/test-realm ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] evaluating expression 'always()'\r\n[deployment/deploy/deploy] [DEBUG] expression 'always()' evaluated to 'true'\r\n[deployment/deploy/deploy] ⭐ Run Pre test\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0\r\n[deployment/deploy/deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[deployment/deploy/deploy] [DEBUG] run pre step for 'test'\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] ☁ git clone 'https://github.com/actions/hello-world-docker-action' # ref=v2\r\n[deployment/deploy/deploy] [DEBUG] cloning https://github.com/actions/hello-world-docker-action to /home/ubuntu/.cache/act/actions-hello-world-docker-action@v2\r\n[deployment/deploy/deploy] [DEBUG] Cloned https://github.com/actions/hello-world-docker-action to /home/ubuntu/.cache/act/actions-hello-world-docker-action@v2\r\n[deployment/deploy/deploy] [DEBUG] Checked out v2\r\n[deployment/deploy/deploy] [DEBUG] Read action &{Hello World Greet someone and record the time map[who-to-greet:{Who to greet true World}] map[time:{The time we greeted you }] {docker map[] always() always() Dockerfile [${{ inputs.who-to-greet }}] []} { }} from 'Unknown'\r\n[deployment/deploy/deploy] ✅ Success - Pre test\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Skipping local actions/checkout because workdir was already copied\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://172.26.128.29:42791/ CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v4 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:deploy GITHUB_REF:refs/heads/local GITHUB_REF_NAME:local GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:atlas-it-gmbh/test-realm GITHUB_REPOSITORY_OWNER:atlas-it-gmbh GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:edd014a2ef037f1880b6f85c9816f9e2ac367480 GITHUB_WORKFLOW:deploy GITHUB_WORKSPACE:/home/ubuntu/test-realm ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] evaluating expression ''\r\n[deployment/deploy/deploy] [DEBUG] expression '' evaluated to 'true'\r\n[deployment/deploy/deploy] ⭐ Run Main Checkout\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0\r\n[deployment/deploy/deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] 🐳 docker cp src=/home/ubuntu/test-realm/. dst=/home/ubuntu/test-realm\r\n[deployment/deploy/deploy] [DEBUG] Writing tarball /tmp/act4219486186 from /home/ubuntu/test-realm/.\r\n[deployment/deploy/deploy] [DEBUG] Stripping prefix:/home/ubuntu/test-realm/ src:/home/ubuntu/test-realm/.\r\n[deployment/deploy/deploy] [DEBUG] Extracting content from '/tmp/act4219486186' to '/home/ubuntu/test-realm'\r\n[deployment/deploy/deploy] ✅ Success - Main Checkout\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://172.26.128.29:42791/ CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:dev GITHUB_ACTION_REPOSITORY:atlas-it-gmbh/actions 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:deploy GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/local GITHUB_REF_NAME:local GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:atlas-it-gmbh/test-realm GITHUB_REPOSITORY_OWNER:atlas-it-gmbh GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:edd014a2ef037f1880b6f85c9816f9e2ac367480 GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_WORKFLOW:deploy GITHUB_WORKSPACE:/home/ubuntu/test-realm ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] evaluating expression ''\r\n[deployment/deploy/deploy] [DEBUG] expression '' evaluated to 'true'\r\n[deployment/deploy/deploy] ⭐ Run Main test\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0\r\n[deployment/deploy/deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] About to run action &{test composite action map[] map[] {composite map[] always() always() [] [{ {0 0 <nil> [] 0 0} echo \"Composite action started\"\r\n bash {0 0 <nil> [] 0 0} map[] } { {0 0 <nil> [] 0 0} actions/hello-world-docker-action@v2 {0 0 <nil> [] 0 0} map[who-to-greet:Mona the Octocat] }]} { }}\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] type=remote-action actionDir=/home/ubuntu/.cache/act/atlas-it-gmbh-actions-test@dev actionPath=test workdir=/home/ubuntu/test-realm actionCacheDir=/home/ubuntu/.cache/act actionName=atlas-it-gmbh-actions-test@dev/test containerActionDir=/var/run/act/actions/atlas-it-gmbh-actions-test@dev/test\r\n[deployment/deploy/deploy] [DEBUG] /var/run/act/actions/atlas-it-gmbh-actions-test@dev/\r\n[deployment/deploy/deploy] 🐳 docker cp src=/home/ubuntu/.cache/act/atlas-it-gmbh-actions-test@dev/ dst=/var/run/act/actions/atlas-it-gmbh-actions-test@dev/\r\n[deployment/deploy/deploy] [DEBUG] Writing tarball /tmp/act1287266181 from /home/ubuntu/.cache/act/atlas-it-gmbh-actions-test@dev/\r\n[deployment/deploy/deploy] [DEBUG] Stripping prefix:/home/ubuntu/.cache/act/atlas-it-gmbh-actions-test@dev/ src:/home/ubuntu/.cache/act/atlas-it-gmbh-actions-test@dev/\r\n[deployment/deploy/deploy] [DEBUG] Extracting content from '/tmp/act1287266181' to '/var/run/act/actions/atlas-it-gmbh-actions-test@dev/'\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://172.26.128.29:42791/ CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/var/run/act/actions/atlas-it-gmbh-actions-test@dev/test GITHUB_ACTION_REF:dev GITHUB_ACTION_REPOSITORY:atlas-it-gmbh/actions 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:deploy GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/local GITHUB_REF_NAME:local GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:atlas-it-gmbh/test-realm GITHUB_REPOSITORY_OWNER:atlas-it-gmbh GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:edd014a2ef037f1880b6f85c9816f9e2ac367480 GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_WORKFLOW:deploy GITHUB_WORKSPACE:/home/ubuntu/test-realm ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] evaluating expression ''\r\n[deployment/deploy/deploy] [DEBUG] expression '' evaluated to 'true'\r\n[deployment/deploy/deploy] ⭐ Run Main echo \"Composite action started\"\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0\r\n[deployment/deploy/deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Wrote command \r\n\r\necho \"Composite action started\"\r\n\r\n\r\n to 'workflow/1-composite-0.sh'\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/1-composite-0.sh len:34\r\n[deployment/deploy/deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[deployment/deploy/deploy] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1-composite-0.sh] user= workdir=\r\n[deployment/deploy/deploy] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1-composite-0.sh]'\r\n[deployment/deploy/deploy] [DEBUG] Working directory '/home/ubuntu/test-realm'\r\n| Composite action started\r\n[deployment/deploy/deploy] ✅ Success - Main echo \"Composite action started\"\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://172.26.128.29:42791/ CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/var/run/act/actions/atlas-it-gmbh-actions-test@dev/test GITHUB_ACTION_REF:v2 GITHUB_ACTION_REPOSITORY:actions/hello-world-docker-action 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:deploy GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/local GITHUB_REF_NAME:local GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:atlas-it-gmbh/test-realm GITHUB_REPOSITORY_OWNER:atlas-it-gmbh GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:edd014a2ef037f1880b6f85c9816f9e2ac367480 GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_WORKFLOW:deploy GITHUB_WORKSPACE:/home/ubuntu/test-realm INPUT_WHO-TO-GREET:Mona the Octocat ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] evaluating expression ''\r\n[deployment/deploy/deploy] [DEBUG] expression '' evaluated to 'true'\r\n[deployment/deploy/deploy] ⭐ Run Main actions/hello-world-docker-action@v2\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0\r\n[deployment/deploy/deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] About to run action &{Hello World Greet someone and record the time map[who-to-greet:{Who to greet true World}] map[time:{The time we greeted you }] {docker map[] always() always() Dockerfile [${{ inputs.who-to-greet }}] []} { }}\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] type=remote-action actionDir=/home/ubuntu/.cache/act/actions-hello-world-docker-action@v2 actionPath= workdir=/home/ubuntu/test-realm actionCacheDir=/home/ubuntu/.cache/act actionName=actions-hello-world-docker-action@v2 containerActionDir=/var/run/act/actions/actions-hello-world-docker-action@v2\r\n[deployment/deploy/deploy] [DEBUG] image 'act-actions-hello-world-docker-action-v2-dockeraction:latest' for architecture '' will be built from context '/home/ubuntu/.cache/act/actions-hello-world-docker-action@v2/\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] expression '${{ inputs.who-to-greet }}' rewritten to 'format('{0}', inputs.who-to-greet)'\r\n[deployment/deploy/deploy] [DEBUG] evaluating expression 'format('{0}', inputs.who-to-greet)'\r\n[deployment/deploy/deploy] [DEBUG] expression 'format('{0}', inputs.who-to-greet)' evaluated to '%!t(string=Mona the Octocat)'\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] 'runs-on' key not defined in deploy/deploy\r\n[deployment/deploy/deploy] 🐳 docker build -t act-actions-hello-world-docker-action-v2-dockeraction:latest /home/ubuntu/.cache/act/actions-hello-world-docker-action@v2/\r\n[deployment/deploy/deploy] [DEBUG] Building image from '/home/ubuntu/.cache/act/actions-hello-world-docker-action@v2/'\r\n[deployment/deploy/deploy] [DEBUG] Creating archive for build context dir '/home/ubuntu/.cache/act/actions-hello-world-docker-action@v2/' with relative dockerfile 'Dockerfile'\r\n[deployment/deploy/deploy] [DEBUG] Creating image from context dir '/home/ubuntu/.cache/act/actions-hello-world-docker-action@v2/' with tag 'act-actions-hello-world-docker-action-v2-dockeraction:latest' and platform ''\r\n[deployment/deploy/deploy] [DEBUG] Step 1/3 : FROM alpine:3.10\r\n[deployment/deploy/deploy] [DEBUG] \r\n[deployment/deploy/deploy] [DEBUG] ---> e7b300aee9f9\r\n[deployment/deploy/deploy] [DEBUG] Step 2/3 : COPY entrypoint.sh /entrypoint.sh\r\n[deployment/deploy/deploy] [DEBUG] \r\n[deployment/deploy/deploy] [DEBUG] ---> Using cache\r\n[deployment/deploy/deploy] [DEBUG] ---> 926963b203d8\r\n[deployment/deploy/deploy] [DEBUG] Step 3/3 : ENTRYPOINT [\"/entrypoint.sh\"]\r\n[deployment/deploy/deploy] [DEBUG] \r\n[deployment/deploy/deploy] [DEBUG] ---> Using cache\r\n[deployment/deploy/deploy] [DEBUG] ---> bfa47254c7bd\r\n[deployment/deploy/deploy] [DEBUG] Unable to handle line: {\"aux\":{\"ID\":\"sha256:bfa47254c7bdc42605fc8e6f6470037088e7423ff6af1e8a39d008ae40e3d0a5\"}}\r\n[deployment/deploy/deploy] [DEBUG] Successfully built bfa47254c7bd\r\n[deployment/deploy/deploy] [DEBUG] Successfully tagged act-actions-hello-world-docker-action-v2-dockeraction:latest\r\n[deployment/deploy/deploy] 🐳 docker pull image=act-actions-hello-world-docker-action-v2-dockeraction:latest platform= username= forcePull=false\r\n[deployment/deploy/deploy] [DEBUG] 🐳 docker pull act-actions-hello-world-docker-action-v2-dockeraction:latest\r\n[deployment/deploy/deploy] [DEBUG] Image exists? true\r\n[deployment/deploy/deploy] 🐳 docker create image=act-actions-hello-world-docker-action-v2-dockeraction:latest platform= entrypoint=[] cmd=[\"Mona the Octocat\"] network=\"container:act-deploy-deploy-8e4ebf7a6ad57f97f239b1243737ab8758a05193ffec121218c6b2f05ab8e982\"\r\n[deployment/deploy/deploy] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[GITHUB_RETENTION_DAYS=0 GITHUB_WORKFLOW=deploy GITHUB_GRAPHQL_URL=https://api.github.com/graphql GITHUB_OUTPUT=/var/run/act/workflow/outputcmd.txt ImageOS=ubuntu20 GITHUB_ACTION_REF=v2 GITHUB_REPOSITORY=atlas-it-gmbh/test-realm GITHUB_REPOSITORY_OWNER=atlas-it-gmbh GITHUB_ACTIONS=true RUNNER_PERFLOG=/dev/null CI=true RUNNER_TRACKING_ID= GITHUB_REF_NAME=local GITHUB_WORKSPACE=/home/ubuntu/test-realm who-to-greet=Mona the Octocat GITHUB_SHA=edd014a2ef037f1880b6f85c9816f9e2ac367480 GITHUB_JOB=deploy GITHUB_ENV=/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME=push ACT=true GITHUB_PATH=/var/run/act/workflow/pathcmd.txt GITHUB_REF_TYPE=branch GITHUB_ACTOR=nektos/act GITHUB_BASE_REF= GITHUB_API_URL=https://api.github.com GITHUB_ACTION=1 GITHUB_REF=refs/heads/local GITHUB_ACTION_PATH=/var/run/act/actions/atlas-it-gmbh-actions-test@dev/test GITHUB_STATE=/var/run/act/workflow/statecmd.txt GITHUB_RUN_NUMBER=1 GITHUB_HEAD_REF= INPUT_WHO-TO-GREET=Mona the Octocat GITHUB_EVENT_PATH=/var/run/act/workflow/event.json ACTIONS_CACHE_URL=http://172.26.128.29:42791/ GITHUB_SERVER_URL=https://github.com GITHUB_STEP_SUMMARY=/var/run/act/workflow/SUMMARY.md GITHUB_RUN_ID=1 GITHUB_ACTION_REPOSITORY=actions/hello-world-docker-action RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:act-actions-hello-world-docker-action-v2-dockeraction:latest Volumes:map[] WorkingDir:/home/ubuntu/test-realm Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}\r\n[deployment/deploy/deploy] [DEBUG] Common container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:container:act-deploy-deploy-8e4ebf7a6ad57f97f239b1243737ab8758a05193ffec121218c6b2f05ab8e982 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:/opt/hostedtoolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-deploy-deploy-8e4ebf7a6ad57f97f239b1243737ab8758a05193ffec121218c6b2f05ab8e982-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-deploy-deploy-8e4ebf7a6ad57f97f239b1243737ab8758a05193ffec121218c6b2f05ab8e982 Target:/home/ubuntu/test-realm ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}\r\n[deployment/deploy/deploy] [DEBUG] input.NetworkAliases ==> []\r\n[deployment/deploy/deploy] [DEBUG] Created container name=act-deploy-deploy-8e4ebf7a6ad57f97f239b1243737ab8758a05193ffec1-385d52be65a565c5a981dd619fcbdef0044a7534680b52c58118241e603d3162 id=654441a83927617f50837ba918a2bbd6561255b13b9e6a11e4bedd4626452dc4 from image act-actions-hello-world-docker-action-v2-dockeraction:latest (platform: )\r\n[deployment/deploy/deploy] [DEBUG] ENV ==> [GITHUB_RETENTION_DAYS=0 GITHUB_WORKFLOW=deploy GITHUB_GRAPHQL_URL=https://api.github.com/graphql GITHUB_OUTPUT=/var/run/act/workflow/outputcmd.txt ImageOS=ubuntu20 GITHUB_ACTION_REF=v2 GITHUB_REPOSITORY=atlas-it-gmbh/test-realm GITHUB_REPOSITORY_OWNER=atlas-it-gmbh GITHUB_ACTIONS=true RUNNER_PERFLOG=/dev/null CI=true RUNNER_TRACKING_ID= GITHUB_REF_NAME=local GITHUB_WORKSPACE=/home/ubuntu/test-realm who-to-greet=Mona the Octocat GITHUB_SHA=edd014a2ef037f1880b6f85c9816f9e2ac367480 GITHUB_JOB=deploy GITHUB_ENV=/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME=push ACT=true GITHUB_PATH=/var/run/act/workflow/pathcmd.txt GITHUB_REF_TYPE=branch GITHUB_ACTOR=nektos/act GITHUB_BASE_REF= GITHUB_API_URL=https://api.github.com GITHUB_ACTION=1 GITHUB_REF=refs/heads/local GITHUB_ACTION_PATH=/var/run/act/actions/atlas-it-gmbh-actions-test@dev/test GITHUB_STATE=/var/run/act/workflow/statecmd.txt GITHUB_RUN_NUMBER=1 GITHUB_HEAD_REF= INPUT_WHO-TO-GREET=Mona the Octocat GITHUB_EVENT_PATH=/var/run/act/workflow/event.json ACTIONS_CACHE_URL=http://172.26.128.29:42791/ GITHUB_SERVER_URL=https://github.com GITHUB_STEP_SUMMARY=/var/run/act/workflow/SUMMARY.md GITHUB_RUN_ID=1 GITHUB_ACTION_REPOSITORY=actions/hello-world-docker-action RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp]\r\n[deployment/deploy/deploy] 🐳 docker run image=act-actions-hello-world-docker-action-v2-dockeraction:latest platform= entrypoint=[] cmd=[\"Mona the Octocat\"] network=\"container:act-deploy-deploy-8e4ebf7a6ad57f97f239b1243737ab8758a05193ffec121218c6b2f05ab8e982\"\r\n[deployment/deploy/deploy] [DEBUG] Starting container: 654441a83927617f50837ba918a2bbd6561255b13b9e6a11e4bedd4626452dc4\r\n[deployment/deploy/deploy] [DEBUG] Removed container: 654441a83927617f50837ba918a2bbd6561255b13b9e6a11e4bedd4626452dc4\r\n[deployment/deploy/deploy] ❌ Failure - Main actions/hello-world-docker-action@v2\r\n[deployment/deploy/deploy] failed to start container: Error response from daemon: No such container: act-deploy-deploy-8e4ebf7a6ad57f97f239b1243737ab8758a05193ffec121218c6b2f05ab8e982\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] ❌ Failure - Main test\r\n[deployment/deploy/deploy] failed to start container: Error response from daemon: No such container: act-deploy-deploy-8e4ebf7a6ad57f97f239b1243737ab8758a05193ffec121218c6b2f05ab8e982\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://172.26.128.29:42791/ CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:dev GITHUB_ACTION_REPOSITORY:atlas-it-gmbh/actions 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:deploy GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/local GITHUB_REF_NAME:local GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:atlas-it-gmbh/test-realm GITHUB_REPOSITORY_OWNER:atlas-it-gmbh GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:edd014a2ef037f1880b6f85c9816f9e2ac367480 GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_WORKFLOW:deploy GITHUB_WORKSPACE:/home/ubuntu/test-realm ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] evaluating expression 'always()'\r\n[deployment/deploy/deploy] [DEBUG] expression 'always()' evaluated to 'true'\r\n[deployment/deploy/deploy] ⭐ Run Post test\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[deployment/deploy/deploy] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0\r\n[deployment/deploy/deploy] [DEBUG] Extracting content to '/var/run/act'\r\n[deployment/deploy/deploy] [DEBUG] run post step for 'test'\r\n[deployment/deploy/deploy] [DEBUG] /var/run/act/actions/atlas-it-gmbh-actions-test@dev/\r\n[deployment/deploy/deploy] 🐳 docker cp src=/home/ubuntu/.cache/act/atlas-it-gmbh-actions-test@dev/ dst=/var/run/act/actions/atlas-it-gmbh-actions-test@dev/\r\n[deployment/deploy/deploy] [DEBUG] Writing tarball /tmp/act1386152876 from /home/ubuntu/.cache/act/atlas-it-gmbh-actions-test@dev/\r\n[deployment/deploy/deploy] [DEBUG] Stripping prefix:/home/ubuntu/.cache/act/atlas-it-gmbh-actions-test@dev/ src:/home/ubuntu/.cache/act/atlas-it-gmbh-actions-test@dev/\r\n[deployment/deploy/deploy] [DEBUG] Extracting content from '/tmp/act1386152876' to '/var/run/act/actions/atlas-it-gmbh-actions-test@dev/'\r\n[deployment/deploy/deploy] ✅ Success - Post test\r\n[deployment/deploy/deploy] [DEBUG] skipping post step for 'Checkout': no action model available\r\n[deployment/deploy/deploy] 🏁 Job failed\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\n[deployment/deploy/deploy] [DEBUG] Found revision: edd014a2ef037f1880b6f85c9816f9e2ac367480\r\nError: Job 'deploy' failed\r\n```\r\n\r\n\r\n### Additional information\r\n\r\n_No response_","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-02-15T16:21:43Z","id":"I_kwDOCcSpD85_XzHe","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2222,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Composite action with docker action in a reusable workflow fails","updatedAt":"2024-02-15T16:58:34Z","url":"https://github.com/nektos/act/issues/2222"},{"assignees":[],"author":{"login":"jmount-boss"},"body":"### Bug report info\r\n\r\n```plain text\r\nact version: 0.2.59\r\nGOOS: linux\r\nGOARCH: amd64\r\nNumCPU: 12\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n\t/var/run/docker.sock\r\nConfig files: \r\n\t/home/james/.config/act/actrc:\r\n\t\t-P ubuntu-latest=catthehacker/ubuntu:act-latest\r\n\t\t-P ubuntu-22.04=catthehacker/ubuntu:act-22.04\r\n\t\t-P ubuntu-20.04=catthehacker/ubuntu:act-20.04\r\n\t\t-P ubuntu-18.04=catthehacker/ubuntu:act-18.04\r\nBuild info:\r\n\tGo version: go1.20.13\r\n\tModule path: github.com/nektos/act\r\n\tMain version: (devel)\r\n\tMain path: github.com/nektos/act\r\n\tMain checksum: \r\n\tBuild settings:\r\n\t\t-buildmode: exe\r\n\t\t-compiler: gc\r\n\t\t-ldflags: -s -w -X main.version=0.2.59 -X main.commit=b7a8145d09a7469e03c57e24230cbba109218faf -X main.date=2024-02-01T22:32:29Z -X main.builtBy=goreleaser\r\n\t\tCGO_ENABLED: 0\r\n\t\tGOARCH: amd64\r\n\t\tGOOS: linux\r\n\t\tGOAMD64: v1\r\n\t\tvcs: git\r\n\t\tvcs.revision: b7a8145d09a7469e03c57e24230cbba109218faf\r\n\t\tvcs.time: 2024-02-01T22:32:06Z\r\n\t\tvcs.modified: false\r\nDocker Engine:\r\n\tEngine version: 25.0.1\r\n\tEngine runtime: runc\r\n\tCgroup version: 2\r\n\tCgroup driver: systemd\r\n\tStorage driver: overlay2\r\n\tRegistry URI: https://index.docker.io/v1/\r\n\tOS: Ubuntu 22.04.3 LTS\r\n\tOS type: linux\r\n\tOS version: 22.04\r\n\tOS arch: x86_64\r\n\tOS kernel: 6.1.0-1033-oem\r\n\tOS CPU: 12\r\n\tOS memory: 39770 MB\r\n\tSecurity options:\r\n\t\tname=apparmor\r\n\t\tname=seccomp,profile=builtin\r\n\t\tname=cgroupns\r\n```\r\n\r\n\r\n### Command used with act\r\n\r\n```sh\r\nact -W '.github/workflows/build.yml'\r\n```\r\n\r\n\r\n### Describe issue\r\n\r\nThe matrix configuration appears to be inconsistent with the documentation provided by Github [here](https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#expanding-or-adding-matrix-configurations). Expected only 6 configurations, yet Act runs 7. The matrix configuration '{color: green}' should not exist according to the Github documentation.\r\n\r\n### Link to GitHub repository\r\n\r\n_No response_\r\n\r\n### Workflow content\r\n\r\n```yml\r\nname: Build & Test\r\n\r\non:\r\n push:\r\n\r\n# Global environment variables\r\n\r\njobs:\r\n build:\r\n runs-on: ubuntu-20.04\r\n strategy:\r\n matrix:\r\n fruit: [apple, pear]\r\n animal: [cat, dog]\r\n include:\r\n - color: green\r\n - color: pink\r\n animal: cat\r\n - fruit: apple\r\n shape: circle\r\n - fruit: banana\r\n - fruit: banana\r\n animal: cat\r\n\r\n steps: \r\n - name: Matrix Configuration\r\n run: |\r\n echo \"Color: ${{ matrix.color }}\"\r\n```\r\n\r\n\r\n### Relevant log output\r\n\r\n```sh\r\n[Build & Test/build-1] 🚀 Start image=catthehacker/ubuntu:act-20.04\r\n[Build & Test/build-2] 🚀 Start image=catthehacker/ubuntu:act-20.04\r\n[Build & Test/build-3] 🚀 Start image=catthehacker/ubuntu:act-20.04\r\n[Build & Test/build-4] 🚀 Start image=catthehacker/ubuntu:act-20.04\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-2] 🐳 docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=true\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-4] 🐳 docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=true\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-1] 🐳 docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=true\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-3] 🐳 docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=true\r\nINFO[0003] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-3] 🐳 docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\nINFO[0003] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-4] 🐳 docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\nINFO[0003] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-2] 🐳 docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\nINFO[0003] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-1] 🐳 docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Build & Test/build-3] 🐳 docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Build & Test/build-4] 🐳 docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Build & Test/build-2] 🐳 docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Build & Test/build-1] 🐳 docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Build & Test/build-2] 🧪 Matrix: map[animal:dog fruit:apple shape:circle]\r\n[Build & Test/build-3] 🧪 Matrix: map[animal:cat color:pink fruit:pear]\r\n[Build & Test/build-4] 🧪 Matrix: map[animal:dog fruit:pear]\r\n[Build & Test/build-3] ⭐ Run Main Matrix Configuration\r\n[Build & Test/build-2] ⭐ Run Main Matrix Configuration\r\n[Build & Test/build-1] 🧪 Matrix: map[animal:cat color:pink fruit:apple shape:circle]\r\n[Build & Test/build-4] ⭐ Run Main Matrix Configuration\r\n[Build & Test/build-2] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=\r\n[Build & Test/build-3] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=\r\n[Build & Test/build-1] ⭐ Run Main Matrix Configuration\r\n[Build & Test/build-4] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=\r\n| Object\r\n[Build & Test/build-4] ✅ Success - Main Matrix Configuration\r\n| Object\r\n| Object\r\n[Build & Test/build-2] ✅ Success - Main Matrix Configuration\r\n[Build & Test/build-3] ✅ Success - Main Matrix Configuration\r\n[Build & Test/build-4] Cleaning up container for job build\r\n[Build & Test/build-1] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=\r\n[Build & Test/build-2] Cleaning up container for job build\r\n[Build & Test/build-3] Cleaning up container for job build\r\n| Object\r\n[Build & Test/build-1] ✅ Success - Main Matrix Configuration\r\n[Build & Test/build-1] Cleaning up container for job build\r\n[Build & Test/build-4] 🏁 Job succeeded\r\n[Build & Test/build-2] 🏁 Job succeeded\r\n[Build & Test/build-5] 🚀 Start image=catthehacker/ubuntu:act-20.04\r\n[Build & Test/build-6] 🚀 Start image=catthehacker/ubuntu:act-20.04\r\nINFO[0003] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-6] 🐳 docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=true\r\nINFO[0003] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-5] 🐳 docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=true\r\n[Build & Test/build-1] 🏁 Job succeeded\r\n[Build & Test/build-7] 🚀 Start image=catthehacker/ubuntu:act-20.04\r\nINFO[0003] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-7] 🐳 docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=true\r\n[Build & Test/build-3] 🏁 Job succeeded\r\nINFO[0006] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-6] 🐳 docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\nINFO[0006] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-7] 🐳 docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\nINFO[0006] Parallel tasks (0) below minimum, setting to 1 \r\n[Build & Test/build-5] 🐳 docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Build & Test/build-6] 🐳 docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Build & Test/build-7] 🐳 docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Build & Test/build-5] 🐳 docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Build & Test/build-6] 🧪 Matrix: map[fruit:banana]\r\n[Build & Test/build-7] 🧪 Matrix: map[animal:cat fruit:banana]\r\n[Build & Test/build-5] 🧪 Matrix: map[color:green]\r\n[Build & Test/build-6] ⭐ Run Main Matrix Configuration\r\n[Build & Test/build-7] ⭐ Run Main Matrix Configuration\r\n[Build & Test/build-5] ⭐ Run Main Matrix Configuration\r\n[Build & Test/build-6] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=\r\n[Build & Test/build-7] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=\r\n[Build & Test/build-5] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=\r\n| Object\r\n[Build & Test/build-6] ✅ Success - Main Matrix Configuration\r\n| Object\r\n| Object\r\n[Build & Test/build-7] ✅ Success - Main Matrix Configuration\r\n[Build & Test/build-5] ✅ Success - Main Matrix Configuration\r\n[Build & Test/build-6] Cleaning up container for job build\r\n[Build & Test/build-7] Cleaning up container for job build\r\n[Build & Test/build-5] Cleaning up container for job build\r\n[Build & Test/build-6] 🏁 Job succeeded\r\n[Build & Test/build-7] 🏁 Job succeeded\r\n[Build & Test/build-5] 🏁 Job succeeded\r\n```\r\n\r\n\r\n### Additional information\r\n\r\n_No response_","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-02-14T07:05:25Z","id":"I_kwDOCcSpD85_LXJJ","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2220,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Unexpected matrix include behaviour","updatedAt":"2024-02-15T02:46:02Z","url":"https://github.com/nektos/act/issues/2220"},{"assignees":[],"author":{"login":"luketpeterson"},"body":"### Bug report info\r\n\r\nWhen I first ran `act`, I selected the \"Medium\" image. That failed because it couldn't find a satisfactory Python. So I figured I'd try a \"Large\" image. But I can't figure out how to reset that preference.\r\n\r\nThings I've tried:\r\n\r\ninvoking `act` with `act -P image=catthehacker/ubuntu:full-22.04` seems to pull the medium images anyway.\r\n\r\n```\r\n[build docs/deploy] 🚀 Start image=catthehacker/ubuntu:act-latest\r\n[minimal/run ] 🚀 Start image=catthehacker/ubuntu:act-20.04\r\n[ci/common/run] 🚀 Start image=catthehacker/ubuntu:act-20.04\r\n```\r\n\r\nI've tried deleting the medium images from docker, but it just re-pulls them without asking again.\r\n\r\nI've tried deleting everything I could find associated with `act` on the hope that it would ask again when I reinstalled it, but that preference is still hiding somewhere...\r\n```\r\n\r\n\r\n### Command used with act\r\n\r\n```sh\r\n`act -P image=catthehacker/ubuntu:full-22.04`\r\n```\r\n\r\n\r\n### Describe issue\r\n\r\nI've spent 30 minutes reading documentation, forums, and reinstalling stuff trying to get back to the \"What size image do you want to use?\" prompt that it asked me when I first installed `act`.\r\n\r\n### Link to GitHub repository\r\n\r\n_No response_\r\n\r\n### Workflow content\r\n\r\n```yml\r\nn/a\r\n```\r\n\r\n\r\n### Relevant log output\r\n\r\n```sh\r\n[build docs/deploy] 🚀 Start image=catthehacker/ubuntu:act-latest\r\n[minimal/run ] 🚀 Start image=catthehacker/ubuntu:act-20.04\r\n[ci/common/run] 🚀 Start image=catthehacker/ubuntu:act-20.04\r\n```\r\n\r\n\r\n### Additional information\r\n\r\n_No response_","closed":false,"closedAt":null,"comments":[{"author":{"login":"luketpeterson"},"authorAssociation":"NONE","body":"I think it does what I want when I manually specify each image in the invocation. ie\r\n```\r\nact -P ubuntu-22.04=catthehacker/ubuntu:full-22.04 -P ubuntu-latest=catthehacker/ubuntu:full-latest -P ubuntu-20.04=catthehacker/ubuntu:full-20.04\r\n```\r\n\r\nIs there a way to make this the default?","createdAt":"2024-02-14T05:27:17Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"There are multiple locations where you can change default cli flags, a good point would be to add it to the act userguide\r\n\r\n- `./.actrc` For project specfic settings\r\n- `~/.actrc` For global settings (default location of old versions of act, `~` is your userprofile/home folder)\r\n- `%localappdata%/act/actrc` (Windows, **Don't remember 100%ly**)\r\n- `~/Library/Preferences/act/actrc` (macOS, **A guess, not tested yet**)\r\n- `~/.config/act/actrc` (macOS, **A guess, not tested yet**)\r\nMore here `https://github.com/adrg/xdg` config path subpath is `act/actrc`\r\n\r\nThe content for your preference would be added to a actrc file like\r\n```\r\n-P ubuntu-22.04=catthehacker/ubuntu:full-22.04\r\n-P ubuntu-latest=catthehacker/ubuntu:full-latest\r\n-P ubuntu-20.04=catthehacker/ubuntu:full-20.04\r\n```\r\nThe format of this file is just `-flag` + ` ` + `argument` + newline (don't use any kind of quotes)\r\n\r\n\r\nWe should really make act log all actrc locations if not already.\r\n\r\nIf you would provide `act -P image=catthehacker/ubuntu:full-22.04 -v` then you might even see which actrc is loaded in the log, delete it to get the survey again.","createdAt":"2024-02-14T13:13:52Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":6}}]},{"author":{"login":"mitchellnemitz"},"authorAssociation":"NONE","body":"On macOS, the config I selected on first run seems to have been saved to `~/Library/Application Support/act/actrc` which I was able to identify from perusing the base directories here: https://github.com/adrg/xdg?tab=readme-ov-file#xdg-base-directory\r\n\r\nHowever, this took me a long time to find, as the output of `act` after selecting an option includes a dead link and only mentions `~/.actrc` and nothing about XDG directory structures:\r\n\r\n```\r\nDefault image and other options can be changed manually in ~/.actrc (please refer to https://github.com/nektos/act#configuration for additional information about file structure)\r\n```\r\n\r\nIf I can get things up and running I'll try to submit a PR to update the documentation.","createdAt":"2024-02-14T19:23:35Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[{"content":"HOORAY","users":{"totalCount":1}},{"content":"HEART","users":{"totalCount":9}}]},{"author":{"login":"kevinbluer"},"authorAssociation":"NONE","body":"> On macOS, the config I selected on first run seems to have been saved to ~/Library/Application Support/act/actrc\r\n\r\nThanks @mitchellnemitz, I'd been digging around for it with no luck!","createdAt":"2024-02-16T16:23:07Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[{"content":"ROCKET","users":{"totalCount":2}}]},{"author":{"login":"ubrmnsh"},"authorAssociation":"NONE","body":"for macOS deleting actrc at `/Users/[username]/Library/Application Support/act` gets the work done.","createdAt":"2024-03-12T10:30:00Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":1}},{"content":"HOORAY","users":{"totalCount":1}}]}],"createdAt":"2024-02-14T05:10:40Z","id":"I_kwDOCcSpD85_K2no","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2219,"projectCards":[],"reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":2}}],"state":"OPEN","title":"Can't figure out how to reset image choice.","updatedAt":"2024-03-12T10:30:00Z","url":"https://github.com/nektos/act/issues/2219"},{"assignees":[],"author":{"login":"maonat"},"body":"### Bug report info\r\n\r\n```plain text\r\nact version: 0.2.59\r\nGOOS: darwin\r\nGOARCH: arm64\r\nNumCPU: 12\r\nDocker host: unix:///Users/username/.colima/default/docker.sock\r\nSockets found:\r\n /var/run/docker.sock\r\n $HOME/.colima/docker.sock\r\n $HOME/.docker/run/docker.sock\r\nConfig files: \r\n /Users/username/.actrc:\r\n -P ubuntu-latest=catthehacker/ubuntu:full-latest\r\n -P ubuntu-latest=catthehacker/ubuntu:full-20.04\r\n -P ubuntu-18.04=catthehacker/ubuntu:full-18.04\r\nBuild info:\r\n Go version: go1.21.6\r\n Module path: command-line-arguments\r\n Main version: \r\n Main path: \r\n Main checksum: \r\n Build settings:\r\n -buildmode: exe\r\n -compiler: gc\r\n -ldflags: -X main.version=0.2.59\r\n DefaultGODEBUG: panicnil=1\r\n CGO_ENABLED: 1\r\n CGO_CFLAGS: \r\n CGO_CPPFLAGS: \r\n CGO_CXXFLAGS: \r\n CGO_LDFLAGS: \r\n GOARCH: arm64\r\n GOOS: darwin\r\nDocker Engine:\r\n Engine version: 24.0.7\r\n Engine runtime: runc\r\n Cgroup version: 2\r\n Cgroup driver: cgroupfs\r\n Storage driver: overlay2\r\n Registry URI: https://index.docker.io/v1/\r\n OS: Ubuntu 23.10\r\n OS type: linux\r\n OS version: 23.10\r\n OS arch: aarch64\r\n OS kernel: 6.5.0-17-generic\r\n OS CPU: 4\r\n OS memory: 7922 MB\r\n Security options:\r\n name=apparmor\r\n name=seccomp,profile=builtin\r\n name=cgroupns\r\n```\r\n\r\n\r\n### Command used with act\r\n\r\n```sh\r\nact -v workflow_dispatch -P self-hosted=my_acr/my_image:latest -p=false -W .github/workflows/cron-check-environment.yml --container-daemon-socket '/Users/username/.colima/default/docker.sock' --container-architecture linux/amd64 --secret-file secrets.yml\r\n```\r\n\r\n\r\n### Describe issue\r\n\r\nWhen launching origin workflow, the other workflow called with workflow_dispatch detect the provided inputs (passed on the \"with\" key) but if inputs.value is being called within the child workflow, they're empty.\r\n\r\n### Link to GitHub repository\r\n\r\n_No response_\r\n\r\n### Parent Workflow content\r\n\r\n```yml\r\nname: Cron shutdown environments\r\n\r\non:\r\n # schedule:\r\n # - cron: '0 * * * MON-FRI' # Every hour at minute 0 from Monday to Friday - UTC\r\n workflow_dispatch:\r\n\r\njobs:\r\n preparation:\r\n runs-on: self-hosted\r\n outputs:\r\n env_to_start: ${{ steps.environment_list_population.outputs.env_to_start }}\r\n env_to_stop: ${{ steps.environment_list_population.outputs.env_to_stop }}\r\n \r\n steps:\r\n - name: Get all environments to execute\r\n id: environment_list_population\r\n run: |\r\n ENV_TO_STOP=\";myenv1\"\r\n # Preparing outputs\r\n ENV_TO_STOP=$(echo -n $ENV_TO_STOP | jq -R -s -c 'split(\";\") | map(select(length > 0))')\r\n echo \"env_to_stop=$ENV_TO_STOP\" >> $GITHUB_OUTPUT\r\n\r\n shutdown-environment:\r\n needs: preparation\r\n strategy:\r\n matrix:\r\n environment: ${{ fromJson(needs.preparation.outputs.env_to_stop) }}\r\n max-parallel: 10\r\n uses: ./.github/workflows/shutdown-environment.yml\r\n if: ${{ needs.preparation.outputs.env_to_stop != '[]' }}\r\n with:\r\n environment: ${{ matrix.environment }}\r\n title: ${{ matrix.environment }} - Automated Shutdown trigger by CRON\r\n```\r\n\r\n### Child Workflow content\r\n\r\n```yml\r\n\r\nname: Shutdown environment\r\nrun-name: |\r\n ${{ inputs.title != '' && inputs.title || format('{0} {1}', inputs.environment, '- Manual Shutdown') }} by @${{ github.actor }}\r\n\r\non:\r\n workflow_call:\r\n inputs:\r\n environment:\r\n description: The environment that we want shutdown\r\n type: string\r\n required: true\r\n title:\r\n description: A custom title that can be used for this workflow run\r\n type: string\r\n required: false\r\n env-path:\r\n description: Path to the files where the environments files are located in the repository\r\n type: string\r\n required: false\r\n workflow_dispatch:\r\n inputs:\r\n environment:\r\n description: The environment that we want shutdown\r\n type: string\r\n required: true\r\n title:\r\n description: A custom title that can be used for this workflow run\r\n type: string\r\n required: false\r\n env-path:\r\n description: Path to the files where the environments files are located in the repository\r\n type: string\r\n required: false\r\n default: environments\r\n\r\nenv:\r\n ENV_PATH: ${{ github.event.inputs.env-path || 'environments' }}\r\n\r\njobs:\r\n preparation:\r\n runs-on: self-hosted\r\n\r\n steps:\r\n - name: 'Checkout'\r\n uses: actions/checkout@v3\r\n with:\r\n fetch-depth: 0\r\n\r\n - name: Check if environment secret file exists\r\n id: environment_secrets_exists\r\n run: |\r\n set -x\r\n echo \"${{ inputs.title }}\"\r\n ENV_NAME=$(echo ${{ inputs.environment }} | tr '[[:upper:]]' '[[:lower:]]')\r\n export ENV_FILE=${ENV_PATH}/${ENV_NAME}.yml\r\n if [[ ! -f $ENV_FILE ]]; then\r\n echo \"Environment file does not exists in the environments directory! Exiting execution.\"\r\n exit 2\r\n fi\r\n```\r\n\r\n\r\n### Relevant log output\r\n\r\n```sh\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] expression '${{ matrix.environment }}' rewritten to 'format('{0}', matrix.environment)'\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] evaluating expression 'format('{0}', matrix.environment)'\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] expression 'format('{0}', matrix.environment)' evaluated to '%!t(string=myenv1)'\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] expression '${{ matrix.environment }} - Automated Shutdown trigger by CRON' rewritten to 'format('{0} - Automated Shutdown trigger by CRON', matrix.environment)'\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] evaluating expression 'format('{0} - Automated Shutdown trigger by CRON', matrix.environment)'\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] expression 'format('{0} - Automated Shutdown trigger by CRON', matrix.environment)' evaluated to '%!t(string=myenv1 - Automated Shutdown trigger by CRON)'\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] Loading revision from git directory\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] HEAD points to 'revision_id'\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] using github ref: refs/heads/main\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] expression 'set -x\r\necho \"${{ inputs.title }}\"\r\nENV_NAME=$(echo ${{ inputs.environment }} | tr '[[:upper:]]' '[[:lower:]]')\r\nexport ENV_FILE=${ENV_PATH}/${ENV_NAME}.yml\r\nif [[ ! -f $ENV_FILE ]]; then\r\n echo \"Environment file does not exists in the environments directory! Exiting execution.\"\r\n exit 2\r\nfi' rewritten to 'format('set -x\r\necho \"{0}\"\r\nENV_NAME=$(echo {1} | tr ''[[:upper:]]'' ''[[:lower:]]'')\r\nexport ENV_FILE=${{ENV_PATH}}/${{ENV_NAME}}.yml\r\nif [[ ! -f $ENV_FILE ]]; then\r\n echo \"Environment file does not exists in the environments directory! Exiting execution.\"\r\n exit 2\r\nfi', inputs.title, inputs.environment)'\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] evaluating expression 'format('set -x\r\necho \"{0}\"\r\nENV_NAME=$(echo {1} | tr ''[[:upper:]]'' ''[[:lower:]]'')\r\nexport ENV_FILE=${{ENV_PATH}}/${{ENV_NAME}}.yml\r\nif [[ ! -f $ENV_FILE ]]; then\r\n echo \"Environment file does not exists in the environments directory! Exiting execution.\"\r\n exit 2\r\nfi', inputs.title, inputs.environment)'\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] expression 'format('set -x\r\necho \"{0}\"\r\nENV_NAME=$(echo {1} | tr ''[[:upper:]]'' ''[[:lower:]]'')\r\nexport ENV_FILE=${{ENV_PATH}}/${{ENV_NAME}}.yml\r\nif [[ ! -f $ENV_FILE ]]; then\r\n echo \"Environment file does not exists in the environments directory! Exiting execution.\"\r\n exit 2\r\nfi', inputs.title, inputs.environment)' evaluated to '%!t(string=set -x\r\necho \"\"\r\nENV_NAME=$(echo | tr '[[:upper:]]' '[[:lower:]]')\r\nexport ENV_FILE=${ENV_PATH}/${ENV_NAME}.yml\r\nif [[ ! -f $ENV_FILE ]]; then\r\n echo \"Environment file does not exists in the environments directory! Exiting execution.\"\r\n exit 2\r\nfi)'\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] Wrote command \r\n\r\nset -x\r\necho \"\"\r\nENV_NAME=$(echo | tr '[[:upper:]]' '[[:lower:]]')\r\nexport ENV_FILE=${ENV_PATH}/${ENV_NAME}.yml\r\nif [[ ! -f $ENV_FILE ]]; then\r\n echo \"Environment file does not exists in the environments directory! Exiting execution.\"\r\n exit 2\r\nfi\r\n\r\n to 'workflow/environment_secrets_exists'\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] Writing entry to tarball workflow/environment_secrets_exists len:245\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] Extracting content to '/var/run/act'\r\n[shutdown-environment/Shutdown environment/preparation] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/environment_secrets_exists] user= workdir=\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/environment_secrets_exists]'\r\n[shutdown-environment/Shutdown environment/preparation] [DEBUG] Working directory '/Users/username/repos/ff/repo-name'\r\nDEBU[0000] Saving notices etag=914e4f2c-2a73-4040-afb7-602be630d6dc \r\nDEBU[0000] No new notices \r\n| + echo ''\r\n| \r\n| ++ echo\r\n| ++ tr '[[:upper:]]' '[[:lower:]]'\r\n| + ENV_NAME=\r\n| + export ENV_FILE=environments/.yml\r\n| + ENV_FILE=environments/.yml\r\n| + [[ ! -f environments/.yml ]]\r\n| + echo 'Environment file does not exists in the environments directory! Exiting execution.'\r\n| Environment file does not exists in the environments directory! Exiting execution.\r\n| + exit 2\r\n[shutdown-environment/Shutdown environment/preparation] ❌ Failure - Main Check if environment secret file exists\r\n[shutdown-environment/Shutdown environment/preparation] exitcode '2': failure\r\n```\r\n\r\n\r\n### Additional information\r\n\r\n_No response_","closed":false,"closedAt":null,"comments":[{"author":{"login":"ships"},"authorAssociation":"NONE","body":"Looks the same as https://github.com/nektos/act/issues/2046","createdAt":"2024-02-15T01:23:42Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]}],"createdAt":"2024-02-12T17:54:43Z","id":"I_kwDOCcSpD85-_0d_","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2217,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"If using workflow_call and matrix inputs are not being taken in consideration by second workflow","updatedAt":"2024-02-15T01:23:43Z","url":"https://github.com/nektos/act/issues/2217"},{"assignees":[],"author":{"login":"dbolser"},"body":"```bash\r\n$ make build\r\ngo build -ldflags \"-X main.version=6afcbd7-dirty\" -o dist/local/act main.go\r\n# github.com/go-git/go-git/v5/utils/trace\r\n../../go/pkg/mod/github.com/go-git/go-git/v5@v5.11.0/utils/trace/trace.go:15:17: undefined: atomic.Int32\r\nnote: module requires Go 1.19\r\n# github.com/docker/cli/cli/connhelper/commandconn\r\n../../go/pkg/mod/github.com/docker/cli@v24.0.7+incompatible/cli/connhelper/commandconn/commandconn.go:71:22: undefined: atomic.Bool\r\n../../go/pkg/mod/github.com/docker/cli@v24.0.7+incompatible/cli/connhelper/commandconn/commandconn.go:76:22: undefined: atomic.Bool\r\n../../go/pkg/mod/github.com/docker/cli@v24.0.7+incompatible/cli/connhelper/commandconn/commandconn.go:77:22: undefined: atomic.Bool\r\n../../go/pkg/mod/github.com/docker/cli@v24.0.7+incompatible/cli/connhelper/commandconn/commandconn.go:78:22: undefined: atomic.Bool\r\n# github.com/klauspost/compress/zstd\r\n../../go/pkg/mod/github.com/klauspost/compress@v1.17.2/zstd/dict.go:479:32: binary.LittleEndian.AppendUint32 undefined (type binary.littleEndian has no field or method AppendUint32)\r\n../../go/pkg/mod/github.com/klauspost/compress@v1.17.2/zstd/dict.go:490:32: binary.LittleEndian.AppendUint32 undefined (type binary.littleEndian has no field or method AppendUint32)\r\n../../go/pkg/mod/github.com/klauspost/compress@v1.17.2/zstd/dict.go:491:32: binary.LittleEndian.AppendUint32 undefined (type binary.littleEndian has no field or method AppendUint32)\r\n../../go/pkg/mod/github.com/klauspost/compress@v1.17.2/zstd/dict.go:492:32: binary.LittleEndian.AppendUint32 undefined (type binary.littleEndian has no field or method AppendUint32)\r\nmake: *** [Makefile:26: build] Error 2\r\n```","closed":false,"closedAt":null,"comments":[{"author":{"login":"dbolser"},"authorAssociation":"NONE","body":"Ah, seems I need go 1.19...\r\n\r\n```bash\r\n$ go version\r\ngo version go1.18.1 linux/amd64\r\n```","createdAt":"2024-02-06T14:41:07Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]}],"createdAt":"2024-02-06T14:39:21Z","id":"I_kwDOCcSpD85-ayda","labels":[],"milestone":null,"number":2209,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Issue: Can't seem to build...","updatedAt":"2024-02-06T14:41:08Z","url":"https://github.com/nektos/act/issues/2209"},{"assignees":[],"author":{"login":"ChristopherHX"},"body":"CI log, does not happen most of the time.\r\n```\r\nfatal error: concurrent map iteration and map write\r\n \r\n goroutine 26064 [running]:\r\n github.com/nektos/act/pkg/runner.valueMasker.func1(0xc0001d5b20)\r\n \t/home/runner/work/act/act/pkg/runner/logger.go:154 +0xd5\r\n github.com/nektos/act/pkg/runner.(*maskedFormatter).Format(0xc0004dcd20, 0xc00010f1c8?)\r\n \t/home/runner/work/act/act/pkg/runner/logger.go:176 +0x64\r\n github.com/sirupsen/logrus.(*Entry).write(0xc0001d5b20)\r\n \t/home/runner/go/pkg/mod/github.com/sirupsen/logrus@v1.9.3/entry.go:289 +0xa5\r\n github.com/sirupsen/logrus.(*Entry).log(0xc00027e150, 0x5, {0xc002296ff0, 0x30})\r\n \t/home/runner/go/pkg/mod/github.com/sirupsen/logrus@v1.9.3/entry.go:252 +0x474\r\n github.com/sirupsen/logrus.(*Entry).Log(0xc00027e150, 0x5, {0xc00010f360?, 0x2?, 0x2?})\r\n \t/home/runner/go/pkg/mod/github.com/sirupsen/logrus@v1.9.3/entry.go:304 +0x4f\r\n github.com/sirupsen/logrus.(*Entry).Logf(0xc00027e150, 0x5, {0xd04a7b?, 0x40c027?}, {0xc000236fc0?, 0xbd0900?, 0x12fc201?})\r\n \t/home/runner/go/pkg/mod/github.com/sirupsen/logrus@v1.9.3/entry.go:349 +0x85\r\n github.com/sirupsen/logrus.(*Entry).Debugf(0xc0006d95a8?, {0xd04a7b?, 0x0?}, {0xc000236fc0?, 0xc00007e420?, 0x55?})\r\n \t/home/runner/go/pkg/mod/github.com/sirupsen/logrus@v1.9.3/entry.go:358 +0x37\r\n github.com/nektos/act/pkg/container.(*containerReference).copyContent.func1({0xe33150, 0xc00228e840})\r\n \t/home/runner/work/act/act/pkg/container/docker_run.go:779 +0x270\r\n github.com/nektos/act/pkg/common.Executor.Then.func1({0xe33150, 0xc00228e840})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:148 +0x144\r\n github.com/nektos/act/pkg/common.Executor.IfNot.func1({0xe33150, 0xc00228e840})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:166 +0x56\r\n github.com/nektos/act/pkg/runner.runStepExecutor.func1({0xe33150, 0xc00228e840})\r\n \t/home/runner/work/act/act/pkg/runner/step.go:140 +0xdc2\r\n github.com/nektos/act/pkg/runner.newJobExecutor.func4({0xe33150, 0xc00228e840})\r\n \t/home/runner/work/act/act/pkg/runner/job_executor.go:78 +0x6a\r\n github.com/nektos/act/pkg/runner.useStepLogger.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/runner/job_executor.go:197 +0x443\r\n github.com/nektos/act/pkg/common.Executor.Then.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:148 +0x144\r\n github.com/nektos/act/pkg/common.Executor.Then.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:136 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Then.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:136 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Then.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:136 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Then.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:136 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Then.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:136 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Then.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:136 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Finally.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:182 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Finally.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:182 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Finally.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:182 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Then.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:148 +0x144\r\n github.com/nektos/act/pkg/runner.(*RunContext).Executor.func1({0xe33150, 0xc0004dff80})\r\n \t/home/runner/work/act/act/pkg/runner/run_context.go:620 +0x8b\r\n github.com/nektos/act/pkg/runner.(*runnerImpl).NewPlanExecutor.func1.1({0xe33150, 0xc0004dfc20})\r\n \t/home/runner/work/act/act/pkg/runner/runner.go:194 +0x1e3\r\n github.com/nektos/act/pkg/common.NewParallelExecutor.func1.1(0xc00007c060?, 0x0?)\r\n \t/home/runner/work/act/act/pkg/common/executor.go:107 +0x5c\r\n created by github.com/nektos/act/pkg/common.NewParallelExecutor.func1\r\n \t/home/runner/work/act/act/pkg/common/executor.go:105 +0x10b\r\n \r\n goroutine 1 [chan receive, 3 minutes]:\r\n testing.(*T).Run(0xc000316340, {0xce96b6?, 0x566465?}, 0xd68710)\r\n \t/opt/hostedtoolcache/go/1.20.13/x64/src/testing/testing.go:1630 +0x405\r\n github.com/nektos/act/pkg/common.Executor.Then.func1({0xe33150, 0xc0021f43f0})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:136 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Finally.func1({0xe33150, 0xc0021f43f0})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:182 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Finally.func1({0xe33150, 0xc0021f43f0})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:182 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Finally.func1({0xe33150, 0xc0021f43f0})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:182 +0x34\r\n github.com/nektos/act/pkg/common.Executor.Then.func1({0xe33150, 0xc0021f43f0})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:148 +0x144\r\n github.com/nektos/act/pkg/runner.(*RunContext).Executor.func1({0xe33150, 0xc0021f43f0})\r\n \t/home/runner/work/act/act/pkg/runner/run_context.go:620 +0x8b\r\n github.com/nektos/act/pkg/runner.(*runnerImpl).NewPlanExecutor.func1.1({0xe33150, 0xc0021f4fc0})\r\n \t/home/runner/work/act/act/pkg/runner/runner.go:194 +0x1e3\r\n github.com/nektos/act/pkg/common.NewParallelExecutor.func1.1(0xc001626060?, 0x0?)\r\n \t/home/runner/work/act/act/pkg/common/executor.go:107 +0x5c\r\n created by github.com/nektos/act/pkg/common.NewParallelExecutor.func1\r\n \t/home/runner/work/act/act/pkg/common/executor.go:105 +0x10b\r\n \r\n goroutine 26099 [chan receive]:\r\n github.com/nektos/act/pkg/common.NewParallelExecutor.func1({0xe330e0?, 0xc00003a170})\r\n \t/home/runner/work/act/act/pkg/common/executor.go:120 +0x25e\r\n github.com/nektos/act/pkg/common.NewParallelExecutor.func1.1(0xc000175040?, 0xc0004920e0?)\r\n \t/home/runner/work/act/act/pkg/common/executor.go:107 +0x5c\r\n created by github.com/nektos/act/pkg/common.NewParallelExecutor.func1\r\n \t/home/runner/work/act/act/pkg/common/executor.go:105 +0x10b\r\n\r\n```","closed":false,"closedAt":null,"comments":[{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"[fatal error: concurrent map iteration an.txt](https://github.com/nektos/act/files/14154269/fatal.error.concurrent.map.iteration.an.txt)\r\n","createdAt":"2024-02-03T21:06:57Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]}],"createdAt":"2024-02-03T21:05:10Z","id":"I_kwDOCcSpD85-KfA-","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2199,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"fatal error: concurrent map iteration and map write","updatedAt":"2024-02-03T21:06:58Z","url":"https://github.com/nektos/act/issues/2199"},{"assignees":[],"author":{"login":"jsoref"},"body":"### Bug report info\n\n```plain text\nact version: 0.2.57\r\nGOOS: darwin\r\nGOARCH: arm64\r\nNumCPU: 10\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n\t/var/run/docker.sock\r\nConfig files: \r\n\t/Users/jsoref/.actrc:\r\n\t\t#-P ubuntu-latest=node:12.20.1-buster-slim\r\n\t\t#-P ubuntu-20.04=node:12.20.1-buster-slim\r\n\t\t#-P ubuntu-18.04=node:12.20.1-buster-slim\r\n\t\t-P ubuntu-latest=catthehacker/ubuntu:act-latest\r\n\t\t-P ubuntu-22.04=catthehacker/ubuntu:act-22.04\r\n\t\t-P ubuntu-20.04=catthehacker/ubuntu:act-20.04\r\n\t\t-P ubuntu-18.04=catthehacker/ubuntu:act-18.04\r\n\t\t-P ubuntu-16.04=catthehacker/ubuntu:act-16.04\r\n\t\t-P self-hosted=catthehacker/ubuntu:act-latest\r\n\t\t-P ubuntu-latest-4cpu=ubuntu:act-latest\r\n\t\t-P ubuntu-latest-8cpu=ubuntu:act-latest\r\nBuild info:\r\n\tGo version: go1.21.5\r\n\tModule path: command-line-arguments\r\n\tMain version: \r\n\tMain path: \r\n\tMain checksum: \r\n\tBuild settings:\r\n\t\t-buildmode: exe\r\n\t\t-compiler: gc\r\n\t\t-ldflags: -X main.version=0.2.57\r\n\t\tDefaultGODEBUG: panicnil=1\r\n\t\tCGO_ENABLED: 1\r\n\t\tCGO_CFLAGS: \r\n\t\tCGO_CPPFLAGS: \r\n\t\tCGO_CXXFLAGS: \r\n\t\tCGO_LDFLAGS: \r\n\t\tGOARCH: arm64\r\n\t\tGOOS: darwin\r\nDocker Engine:\r\n\tEngine version: 23.0.6\r\n\tEngine runtime: runc\r\n\tCgroup version: 1\r\n\tCgroup driver: cgroupfs\r\n\tStorage driver: overlay2\r\n\tRegistry URI: https://index.docker.io/v1/\r\n\tOS: Alpine Linux v3.18\r\n\tOS type: linux\r\n\tOS version: 3.18.5\r\n\tOS arch: aarch64\r\n\tOS kernel: 6.1.64-0-virt\r\n\tOS CPU: 2\r\n\tOS memory: 1973 MB\r\n\tSecurity options:\r\n\t\tname=seccomp,profile=builtin\n```\n\n\n### Command used with act\n\n```sh\n(~/code/nektos/act/dist/local/act --use-new-action-cache -j spelling -s \"GITHUB_TOKEN=$GH_TOKEN\" 2>&1)\n```\n\n\n### Describe issue\n\nUsing a fine-grained token that allows contents:read for a private repository, act (using `--use-new-action-cache`) isn't able to retrieve my public action.\n\n### Link to GitHub repository\n\n_No response_\n\n### Workflow content\n\n```yml\nname: Check Spelling\r\n\r\n# Comment management is handled through a secondary job, for details see:\r\n# https://github.com/check-spelling/check-spelling/wiki/Feature%3A-Restricted-Permissions\r\n#\r\n# `jobs.comment-push` runs when a push is made to a repository and the `jobs.spelling` job needs to make a comment\r\n# (in odd cases, it might actually run just to collapse a comment, but that's fairly rare)\r\n# it needs `contents: write` in order to add a comment.\r\n#\r\n# `jobs.comment-pr` runs when a pull_request is made to a repository and the `jobs.spelling` job needs to make a comment\r\n# or collapse a comment (in the case where it had previously made a comment and now no longer needs to show a comment)\r\n# it needs `pull-requests: write` in order to manipulate those comments.\r\n\r\n# Updating pull request branches is managed via comment handling.\r\n# For details, see: https://github.com/check-spelling/check-spelling/wiki/Feature:-Update-expect-list\r\n#\r\n# These elements work together to make it happen:\r\n#\r\n# `on.issue_comment`\r\n# This event listens to comments by users asking to update the metadata.\r\n#\r\n# `jobs.update`\r\n# This job runs in response to an issue_comment and will push a new commit\r\n# to update the spelling metadata.\r\n#\r\n# `with.experimental_apply_changes_via_bot`\r\n# Tells the action to support and generate messages that enable it\r\n# to make a commit to update the spelling metadata.\r\n#\r\n# `with.ssh_key`\r\n# In order to trigger workflows when the commit is made, you can provide a\r\n# secret (typically, a write-enabled github deploy key).\r\n#\r\n# For background, see: https://github.com/check-spelling/check-spelling/wiki/Feature:-Update-with-deploy-key\r\n\r\n# Sarif reporting\r\n#\r\n# Access to Sarif reports is generally restricted (by GitHub) to members of the repository.\r\n#\r\n# Requires enabling `security-events: write`\r\n# and configuring the action with `use_sarif: 1`\r\n#\r\n# For information on the feature, see: https://github.com/check-spelling/check-spelling/wiki/Feature:-Sarif-output\r\n\r\n# Minimal workflow structure:\r\n#\r\n# on:\r\n# push:\r\n# ...\r\n# pull_request_target:\r\n# ...\r\n# jobs:\r\n# # you only want the spelling job, all others should be omitted\r\n# spelling:\r\n# # remove `security-events: write` and `use_sarif: 1`\r\n# # remove `experimental_apply_changes_via_bot: 1`\r\n# ... otherwise adjust the `with:` as you wish\r\n\r\non:\r\n push:\r\n branches:\r\n - \"**\"\r\n tags-ignore:\r\n - \"**\"\r\n pull_request_target:\r\n branches:\r\n - \"**\"\r\n types:\r\n - 'opened'\r\n - 'reopened'\r\n - 'synchronize'\r\n issue_comment:\r\n types:\r\n - 'created'\r\n\r\njobs:\r\n spelling:\r\n name: Check Spelling\r\n permissions:\r\n contents: read\r\n pull-requests: read\r\n actions: read\r\n outputs:\r\n followup: ${{ steps.spelling.outputs.followup }}\r\n runs-on: ubuntu-latest\r\n if: ${{ contains(github.event_name, 'pull_request') || github.event_name == 'push' }}\r\n concurrency:\r\n group: spelling-${{ github.event.pull_request.number || github.ref }}\r\n # note: If you use only_check_changed_files, you do not want cancel-in-progress\r\n cancel-in-progress: true\r\n steps:\r\n - name: check-spelling\r\n id: spelling\r\n uses: check-spelling/check-spelling@prerelease\r\n with:\r\n config: .github/actions/spelling-data\r\n suppress_push_for_open_pull_request: ${{ github.actor != 'dependabot[bot]' && 1 }}\r\n checkout: true\r\n check_file_names: 1\r\n spell_check_this: check-spelling/spell-check-this@prerelease\r\n post_comment: 0\r\n use_magic_file: 1\r\n report-timing: 1\r\n warnings: bad-regex,binary-file,deprecated-feature,ignored-expect-variant,large-file,limited-references,no-newline-at-eof,noisy-file,non-alpha-in-dictionary,token-is-substring,unexpected-line-ending,whitespace-in-dictionary,minified-file,unsupported-configuration,no-files-to-check\r\n experimental_apply_changes_via_bot: 1\r\n use_sarif: ${{ (!github.event.pull_request || (github.event.pull_request.head.repo.full_name == github.repository)) && 1 }}\r\n extra_dictionary_limit: 20\r\n extra_dictionaries:\r\n cspell:software-terms/dict/softwareTerms.txt\r\n\r\n comment-push:\r\n name: Report (Push)\r\n # If your workflow isn't running on push, you can remove this job\r\n runs-on: ubuntu-latest\r\n needs: spelling\r\n permissions:\r\n actions: read\r\n contents: write\r\n if: (success() || failure()) && needs.spelling.outputs.followup && github.event_name == 'push'\r\n steps:\r\n - name: comment\r\n uses: check-spelling/check-spelling@prerelease\r\n with:\r\n config: .github/actions/spelling-data\r\n checkout: true\r\n spell_check_this: check-spelling/spell-check-this@prerelease\r\n task: ${{ needs.spelling.outputs.followup }}\r\n\r\n comment-pr:\r\n name: Report (PR)\r\n # If you workflow isn't running on pull_request*, you can remove this job\r\n runs-on: ubuntu-latest\r\n needs: spelling\r\n permissions:\r\n actions: read\r\n contents: read\r\n pull-requests: write\r\n if: (success() || failure()) && needs.spelling.outputs.followup && contains(github.event_name, 'pull_request')\r\n steps:\r\n - name: comment\r\n uses: check-spelling/check-spelling@prerelease\r\n with:\r\n config: .github/actions/spelling-data\r\n checkout: true\r\n spell_check_this: check-spelling/spell-check-this@prerelease\r\n task: ${{ needs.spelling.outputs.followup }}\r\n experimental_apply_changes_via_bot: 1\r\n\r\n update:\r\n name: Update PR\r\n permissions:\r\n contents: write\r\n pull-requests: write\r\n actions: read\r\n runs-on: ubuntu-latest\r\n if: ${{\r\n github.event_name == 'issue_comment' &&\r\n github.event.issue.pull_request &&\r\n contains(github.event.comment.body, '@check-spelling-bot apply')\r\n }}\r\n concurrency:\r\n group: spelling-update-${{ github.event.issue.number }}\r\n cancel-in-progress: false\r\n steps:\r\n - name: apply spelling updates\r\n uses: check-spelling/check-spelling@prerelease\r\n with:\r\n config: .github/actions/spelling-data\r\n experimental_apply_changes_via_bot: 1\r\n checkout: true\r\n ssh_key: \"${{ secrets.CHECK_SPELLING }}\"\n```\n\n\n### Relevant log output\n\n```sh\n> Error: failed to fetch \"https://github.com/check-spelling/check-spelling\" version \"prerelease\": authentication required\n```\n\n\n### Additional information\n\nhttps://github.com/settings/tokens?type=beta\r\nhttps://docs.github.com/en/rest/authentication/permissions-required-for-fine-grained-personal-access-tokens?apiVersion=2022-11-28\n\nApparently I have an expired GITHUB_TOKEN in `.secrets` which has precedence over the `-s GITHUB_TOKEN=...`. This is undesirable. ","closed":false,"closedAt":null,"comments":[{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"Weird I have just created a fine grained PAT.\r\n\r\nWith almost no access, but `- uses: actions/cache@refs/heads/main` and other public actions didn't break for me\r\n\r\n![Bildschirmfoto vom 2024-02-02 22-50-59](https://github.com/nektos/act/assets/44845461/e7c1b61d-904f-49ab-8423-7318e2c20f3d)\r\n\r\nDoes act use the correct GITHUB_TOKEN?\r\n\r\nUsing ` - uses: christopherhx/ghat3@test` works, access denied for you\r\nUsing ` - uses: christopherhx/ghat2@test` access denied, but expeced\r\n\r\nUsing a `.secrets` file with content\r\n```\r\nGITHUB_TOKEN=github_pat_...\r\n```\r\n\r\nBTW: I don't care about leaking these private repo names.","createdAt":"2024-02-02T22:00:52Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"A `.secrets` file with an invalid GITHUB_TOKEN secret seem to override the GITHUB_TOKEN passed from the cli.\r\n\r\nIs that the bug you are seeing?","createdAt":"2024-02-02T22:09:48Z","includesCreatedEdit":true,"isMinimized":false,"minimizedReason":"","reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":2}}]},{"author":{"login":"jsoref"},"authorAssociation":"CONTRIBUTOR","body":"You're right, there was an expired token in `.secrets`.\r\n\r\nSorry.","createdAt":"2024-02-02T22:25:03Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]}],"createdAt":"2024-02-02T20:47:18Z","id":"I_kwDOCcSpD85-HCyP","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2197,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"act favors secrets from `.secrets` over values from `-s`","updatedAt":"2024-02-03T23:43:28Z","url":"https://github.com/nektos/act/issues/2197"},{"assignees":[],"author":{"login":"jsoref"},"body":"### Bug report info\n\n```plain text\nact version: 4ca35d2\r\nGOOS: darwin\r\nGOARCH: arm64\r\nNumCPU: 10\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n\t/var/run/docker.sock\r\nConfig files: \r\n\t/Users/jsoref/.actrc:\r\n\t\t#-P ubuntu-latest=node:12.20.1-buster-slim\r\n\t\t#-P ubuntu-20.04=node:12.20.1-buster-slim\r\n\t\t#-P ubuntu-18.04=node:12.20.1-buster-slim\r\n\t\t-P ubuntu-latest=catthehacker/ubuntu:act-latest\r\n\t\t-P ubuntu-22.04=catthehacker/ubuntu:act-22.04\r\n\t\t-P ubuntu-20.04=catthehacker/ubuntu:act-20.04\r\n\t\t-P ubuntu-18.04=catthehacker/ubuntu:act-18.04\r\n\t\t-P ubuntu-16.04=catthehacker/ubuntu:act-16.04\r\n\t\t-P self-hosted=catthehacker/ubuntu:act-latest\r\n\t\t-P ubuntu-latest-4cpu=ubuntu:act-latest\r\n\t\t-P ubuntu-latest-8cpu=ubuntu:act-latest\r\nBuild info:\r\n\tGo version: go1.21.6\r\n\tModule path: command-line-arguments\r\n\tMain version: \r\n\tMain path: \r\n\tMain checksum: \r\n\tBuild settings:\r\n\t\t-buildmode: exe\r\n\t\t-compiler: gc\r\n\t\t-ldflags: -X main.version=4ca35d2\r\n\t\tDefaultGODEBUG: panicnil=1\r\n\t\tCGO_ENABLED: 1\r\n\t\tCGO_CFLAGS: \r\n\t\tCGO_CPPFLAGS: \r\n\t\tCGO_CXXFLAGS: \r\n\t\tCGO_LDFLAGS: \r\n\t\tGOARCH: arm64\r\n\t\tGOOS: darwin\r\nDocker Engine:\r\n\tEngine version: 23.0.6\r\n\tEngine runtime: runc\r\n\tCgroup version: 1\r\n\tCgroup driver: cgroupfs\r\n\tStorage driver: overlay2\r\n\tRegistry URI: https://index.docker.io/v1/\r\n\tOS: Alpine Linux v3.18\r\n\tOS type: linux\r\n\tOS version: 3.18.5\r\n\tOS arch: aarch64\r\n\tOS kernel: 6.1.64-0-virt\r\n\tOS CPU: 2\r\n\tOS memory: 1973 MB\r\n\tSecurity options:\r\n\t\tname=seccomp,profile=builtin\n```\n\n\n### Command used with act\n\n```sh\n~/code/nektos/act/dist/local/act --use-new-action-cache -j prettier\n```\n\n\n### Describe issue\n\nthe prettier workflow i'm using does a `git add .`, a `git commit`, and a `git show HEAD` (or something functionally equivalent).\r\n\r\nThe output shows that the `.secrets` file is included in the workspace and thus effectively leaked to the workflow\n\n### Link to GitHub repository\n\n_No response_\n\n### Workflow content\n\n```yml\nname: Prettier for JS/TypeScript Code\r\n\r\non:\r\n push\r\n\r\njobs:\r\n prettier:\r\n name: Prettier\r\n runs-on: ubuntu-latest\r\n\r\n steps:\r\n - name: Prettier\r\n uses: garnercorp/build-actions/prettier@updates\r\n with:\r\n prettier-options: \"--write **/*.ts\"\r\n push-to-remote: false\n```\n\n\n### Relevant log output\n\n```sh\n| No package-lock.json file.\r\n| [action-prettier d4cee98] Prettified Code!\r\n| Author: nektos/act <nektos/act@users.noreply.github.com>\r\n| 2 files changed, 2 insertions(+)\r\n| create mode 100644 .dockerignore\r\n| create mode 100644 .secrets\r\n```\r\n\r\nThe `.dockerignore` was because i wanted to see if using `.secrets` in `.dockerignore` would fix it -- it didn't\n```\n\n\n### Additional information\n\nI \"worked around\" this by using `--secret-file .git/act-secrets`, but this didn't technically protect the file from being leaked to the workflow, it just prevented the git commit from catching the file.","closed":false,"closedAt":null,"comments":[{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"I have a question about this problem, because I don't fully understand it.\r\n\r\nDoes `.gitignore` exclude the `.secrets` file and it is not in the git index? (_In this case is the file not copied into the container and is not accessible to the workflow, also it won't be added by `git add .` even outside of a container_)\r\n\r\n\r\n`.dockerignore` isn't really used by act in most places (maybe only for legacy remote actions, and that only if it uses a Dockerfile)","createdAt":"2024-02-01T20:47:57Z","includesCreatedEdit":true,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"jsoref"},"authorAssociation":"CONTRIBUTOR","body":"I'm concerned that `act` has copied over the file in the first place. It isn't so much that `.gitignore` doesn't know not to add the file.\r\n\r\nGitHub Actions has secrets, but it goes to great lengths _not_ to dump them into the file system unprompted.","createdAt":"2024-02-01T21:39:17Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"Act reads `.gitignore` for not copying files into the container.\r\n\r\nDo you propose to add additional ignores hardcoded into act?","createdAt":"2024-02-01T21:44:44Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"jsoref"},"authorAssociation":"CONTRIBUTOR","body":"If act is using `.secrets`, then yes.\r\n\r\nOr at the very least, if it isn't ignored by `.gitignore` and was used by act, then it needs to warn that it's going to leak the file to the workspace.","createdAt":"2024-02-01T21:48:33Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"jsoref"},"authorAssociation":"CONTRIBUTOR","body":"fwiw, yes, `.gitignore` does keep the file out, but that isn't remotely obvious.\r\n\r\nHeck, the fact that `.secrets` is automatically used isn't mentioned in any `README.md` or similar thing in this repository, \r\n\r\nIt's just mentioned in the help:\r\n```sh\r\n % act --help|grep secrets|grep default\r\n --secret-file string file with list of secrets to read from (e.g. --secret-file .secrets) (default \".secrets\")\r\n```\r\n\r\nI really really really wish it was documented in the main README.md.","createdAt":"2024-02-01T21:58:24Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"jsoref"},"authorAssociation":"CONTRIBUTOR","body":"https://github.com/nektos/act/blob/651e713efd8bb699830dd467f0423e8a5989210f/README.md?plain=1#L318-L322","createdAt":"2024-02-01T22:02:20Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"Maybe early exit act if `--secret-file` exists, but not ignored. To accept the risk and allow running it, they need to use `--allow-leaking-secret-file` to opt out.\r\n\r\nJust an idea from my side.\r\n\r\n_technically is the readme obsolete and new content should go to <https://nektosact.com/> <https://github.com/nektos/act-docs>_","createdAt":"2024-02-01T22:08:05Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"jsoref"},"authorAssociation":"CONTRIBUTOR","body":"Practically that webpage doesn't work:\r\n<img width=\"1813\" alt=\"image\" src=\"https://github.com/nektos/act/assets/2119212/09a04908-a2d2-46b9-b69c-f4cd74faa1fd\">\r\n\r\nBut if it did, then the contents of the readme should be removed and replaced with \"See https://nektosact.com/\"","createdAt":"2024-02-01T22:10:02Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"jsoref"},"authorAssociation":"CONTRIBUTOR","body":"Until then, the `.env` stuff could also be dramatically improved: https://github.com/jsoref/act/commit/5f3b6bfbae6a7c37b608043306dcddc9da85bb50","createdAt":"2024-02-01T22:11:27Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"I'm less a doc writer than you are, based on your documentation fixes across GitHub.\r\n\r\n> Practically that webpage doesn't work:\r\n\r\nIn fact these are empty pages, over in the docu sources. Both Readme and that are markdown.\r\n\r\n_I usually not writing any documentation...._\r\n\r\nLike nowhere is mentioned that:\r\n\r\n- `--env-file env.yml`\r\n- `--secret-file secrets.yml`\r\n\r\nall accept yaml since a 3/4 year, because I somewhat don't like godotenv syntax.","createdAt":"2024-02-01T22:19:17Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[{"content":"EYES","users":{"totalCount":1}}]},{"author":{"login":"jsoref"},"authorAssociation":"CONTRIBUTOR","body":"I'd be 💯 in favor of:\r\n> Maybe early exit act if --secret-file exists, but not ignored. To accept the risk and allow running it, they need to use --allow-leaking-secret-file to opt out.\r\n\r\n","createdAt":"2024-02-01T22:20:06Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"jsoref"},"authorAssociation":"CONTRIBUTOR","body":"I'm a coder, and can write docs, but only about things I know enough about, and within some time constraints. I'm not going to write docs from scratch. I will do minor doc fixes within reason -- as long as they're relatively cheap to do.","createdAt":"2024-02-01T22:21:09Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"jsoref"},"authorAssociation":"CONTRIBUTOR","body":"Fwiw, I landed on https://nektosact.com/ w/in the past week or two, tried to use it, decided it was mostly broken and basically discarded it.","createdAt":"2024-02-01T22:22:10Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"yeah two important pages are empty, this should certainly be corrected. Other than that it contains information not found in the readme + has a search bar","createdAt":"2024-02-01T22:24:26Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"jsoref"},"authorAssociation":"CONTRIBUTOR","body":"Once those two pages are fixed the readme in this repository should be truncated to have very little :)\r\n\r\nOtherwise you're splitting focus and increasing likelihood of people not visiting the doc site.","createdAt":"2024-02-01T22:28:25Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"janbrasna"},"authorAssociation":"NONE","body":"@jsoref FYI the landing pages seem to be fixed now:\r\n- https://github.com/nektos/act-docs/pull/9\r\n- https://github.com/nektos/act-docs/pull/10","createdAt":"2024-03-12T17:45:27Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[{"content":"HEART","users":{"totalCount":1}}]}],"createdAt":"2024-02-01T20:33:50Z","id":"I_kwDOCcSpD859-Gd-","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2196,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"`.secrets` file is exposed to workflows","updatedAt":"2024-03-12T17:45:28Z","url":"https://github.com/nektos/act/issues/2196"},{"assignees":[],"author":{"login":"fabiobsantosprogrow"},"body":"### Bug report info\n\n```plain text\nact version: 0.2.57\r\nGOOS: linux\r\nGOARCH: amd64\r\nNumCPU: 12\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n /var/run/docker.sock\r\nConfig files: \r\n /home/progrow/.actrc:\r\n #-P ubuntu-latest=nektos/act-environments-ubuntu:22.04\r\n -P ubuntu-latest=catthehacker/ubuntu:full-latest\r\n -P ubuntu-22.04=catthehacker/ubuntu:full-22.04\r\n -P ubuntu-20.04=catthehacker/ubuntu:full-20.04\r\n -P ubuntu-18.04=catthehacker/ubuntu:full-18.04\r\n --artifact-server-path /home/progrow/act\r\n --pull=false\r\nBuild info:\r\n Go version: go1.21.5\r\n Module path: command-line-arguments\r\n Main version: \r\n Main path: \r\n Main checksum: \r\n Build settings:\r\n -buildmode: exe\r\n -compiler: gc\r\n -ldflags: -X main.version=0.2.57\r\n DefaultGODEBUG: panicnil=1\r\n CGO_ENABLED: 1\r\n CGO_CFLAGS: \r\n CGO_CPPFLAGS: \r\n CGO_CXXFLAGS: \r\n CGO_LDFLAGS: \r\n GOARCH: amd64\r\n GOOS: linux\r\n GOAMD64: v1\r\nDocker Engine:\r\n Engine version: 20.10.23\r\n Engine runtime: runc\r\n Cgroup version: 1\r\n Cgroup driver: cgroupfs\r\n Storage driver: overlay2\r\n Registry URI: https://index.docker.io/v1/\r\n OS: Ubuntu 20.04.3 LTS\r\n OS type: linux\r\n OS version: 20.04\r\n OS arch: x86_64\r\n OS kernel: 5.15.0-92-generic\r\n OS CPU: 12\r\n OS memory: 15854 MB\r\n Security options:\r\n name=apparmor\r\n name=seccomp,profile=default\n```\n\n\n### Command used with act\n\n```sh\nact -j integration_test_stage -W .github/workflows/ci-pipeline.yml\n```\n\n\n### Describe issue\n\nSlow running pipeline...\r\nSometimes getting timeout erros like this: Error: Get \"https://github.com/actions/setup-node/info/refs?service=git-upload-pack\": dial tcp 140.82.121.3:443: i/o timeout\r\n\r\n\r\nKind regards\n\n### Link to GitHub repository\n\n_No response_\n\n### Workflow content\n\n```yml\nname: ci-pipeline\r\npermissions: write-all\r\n\r\n#new comment\r\non:\r\n push:\r\n branches: [develop]\r\n #branches: [develop, 'release/**']\r\n release:\r\n types: [created]\r\n\r\nenv:\r\n DB_CONNECTIONSTRING: postgresql://postgres:%23progrow%3D2015!@localhost:5432/\r\n DB_SCHEMA: test_db\r\n LOG_LEVEL: error\r\n DISABLE_JOB_SALVAGING: true\r\n NUMBER_OF_PROCESSING_THREADS: 16\r\n NUMBER_RETRIES_PER_JOB: 5\r\n DB_ENABLE_PATCHER: false\r\n REDIS_PORT: 6380\r\n VIEWS_TTL_START: 15\r\n EXPRESS_PORT: 3001\r\n PATCHER_APP_ENABLE: false\r\n REDIS_URI_INTEGRATION: redis://localhost:6380/0\r\n REDIS_URI_PRODUCT: redis://localhost:6380/1\r\n DISABLE_AUTH: true\r\n\r\njobs:\r\n commit_stage:\r\n name: Commit Stage\r\n runs-on: ubuntu-latest\r\n\r\n strategy:\r\n matrix:\r\n node-version: [20.x]\r\n\r\n steps:\r\n - uses: actions/checkout@v3\r\n - name: Use Node.js ${{ matrix.node-version }}\r\n uses: actions/setup-node@v3\r\n with:\r\n node-version: ${{ matrix.node-version }}\r\n\r\n - name: Build\r\n run: npm install && npx lerna run build\r\n\r\n - name: Unit test\r\n run: npx lerna run test -- unit\r\n\r\n - name: Archive artifacts\r\n uses: actions/upload-artifact@v3\r\n with:\r\n name: development-pipeline-etl-core\r\n path: |\r\n packages/**/dist\r\n !packages/**/dist/*.md\r\n retention-days: 7\r\n\r\n integration_test_stage:\r\n name: Integration test stage\r\n needs: commit_stage\r\n runs-on: ubuntu-latest\r\n\r\n strategy:\r\n matrix:\r\n node-version: [20.x]\r\n\r\n steps:\r\n - uses: actions/checkout@v3\r\n - name: Use Node.js ${{ matrix.node-version }}\r\n uses: actions/setup-node@v3\r\n with:\r\n node-version: ${{ matrix.node-version }}\r\n\r\n - name: Download artifacts\r\n uses: actions/download-artifact@v3\r\n with:\r\n name: development-pipeline-etl-core\r\n path: ./packages\r\n\r\n - name: Install necessary dependencies\r\n run: npm install\r\n\r\n - name: Sets up environment\r\n run: |\r\n sudo docker-compose up -d\r\n cd packages/management && npm run start &\r\n\r\n - name: Integration test stage\r\n run: cd packages/core && npm run test -- integration\n```\n\n\n### Relevant log output\n\n```sh\nInfo on start:\r\nINFO[0000] Start server on http://192.168.1.184:34567 \r\n[ci-pipeline/Commit Stage] 🚀 Start image=catthehacker/ubuntu:full-latest\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[ci-pipeline/Commit Stage] 🐳 docker pull image=catthehacker/ubuntu:full-latest platform= username= forcePull=false\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\nSometimes get timeout communication:\r\n[ci-pipeline/Integration test stage] 🚀 Start image=catthehacker/ubuntu:full-latest\r\nINFO[0054] Parallel tasks (0) below minimum, setting to 1 \r\n[ci-pipeline/Integration test stage] 🐳 docker pull image=catthehacker/ubuntu:full-latest platform= username= forcePull=false\r\nINFO[0054] Parallel tasks (0) below minimum, setting to 1 \r\n[ci-pipeline/Integration test stage] 🐳 docker create image=catthehacker/ubuntu:full-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[ci-pipeline/Integration test stage] 🐳 docker run image=catthehacker/ubuntu:full-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[ci-pipeline/Integration test stage] 🐳 docker exec cmd=[chown -R 1001:127 /home/progrow/GitRepositories/DevOps/ETLCItest] user=0 workdir=\r\n[ci-pipeline/Integration test stage] ☁ git clone 'https://github.com/actions/setup-node' # ref=v3\r\n[ci-pipeline/Integration test stage] Cleaning up container for job Integration test stage\r\n[ci-pipeline/Integration test stage] 🏁 Job succeeded\r\nError: Get \"https://github.com/actions/setup-node/info/refs?service=git-upload-pack\": dial tcp 140.82.121.3:443: i/o timeout\n```\n\n\n### Additional information\n\n_No response_","closed":false,"closedAt":null,"comments":[{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"The current default **old** action cache does a full clone, while it isn't required. And is sometimes ultra slow.\r\n\r\nNote: The following requires you to update act v0.2.58.\r\n\r\n@fabiobsantosprogrow Can you please try `act -j integration_test_stage -W .github/workflows/ci-pipeline.yml\r\n --use-new-action-cache` to see if it still timeouts frequently. (Download less data from git)\r\n\r\nAlternatively the offline mode could help you by stop fetching updates if you just want to test with the current version of all actions and images `act -j integration_test_stage -W .github/workflows/ci-pipeline.yml --action-offline-mode`","createdAt":"2024-02-01T16:35:47Z","includesCreatedEdit":true,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"fabiobsantosprogrow"},"authorAssociation":"NONE","body":"I upgrade to act version 0.2.59.\r\nUsing the option --use-new-action-cache I'm getting this error:\r\nINFO[0000] Start server on http://10.33.2.172:34567 \r\n[ci-pipeline/Commit Stage] 🚀 Start image=catthehacker/ubuntu:full-latest\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[ci-pipeline/Commit Stage] 🐳 docker pull image=catthehacker/ubuntu:full-latest platform= username= forcePull=false\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[ci-pipeline/Commit Stage] 🐳 docker create image=catthehacker/ubuntu:full-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[ci-pipeline/Commit Stage] 🐳 docker run image=catthehacker/ubuntu:full-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[ci-pipeline/Commit Stage] 🐳 docker exec cmd=[chown -R 1001:127 /home/progrow/GitRepositories/DevOps/ETLCItest] user=0 workdir=\r\n[ci-pipeline/Commit Stage] 🧪 Matrix: map[node-version:20.x]\r\n[ci-pipeline/Commit Stage] ⭐ Run Main actions/checkout@v3\r\n[ci-pipeline/Commit Stage] 🐳 docker cp src=/home/progrow/GitRepositories/DevOps/ETLCItest/. dst=/home/progrow/GitRepositories/DevOps/ETLCItest\r\n[ci-pipeline/Commit Stage] 🐳 docker exec cmd=[chown -R 1001:127 /home/progrow/GitRepositories/DevOps/ETLCItest] user=0 workdir=\r\n[ci-pipeline/Commit Stage] ✅ Success - Main actions/checkout@v3\r\n[ci-pipeline/Commit Stage] ⭐ Run Main Use Node.js 20.x\r\n[ci-pipeline/Commit Stage] 🐳 docker exec cmd=[chown -R 1001:127 /var/run/act/actions/actions-setup-node@v3/] user=0 workdir=\r\n[ci-pipeline/Commit Stage] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-node@v3/dist/setup/index.js] user= workdir=\r\n| node:internal/modules/cjs/loader:1137\r\n| throw err;\r\n| ^\r\n| \r\n| Error: Cannot find module '/var/run/act/actions/actions-setup-node@v3/dist/setup/index.js'\r\n| at Module._resolveFilename (node:internal/modules/cjs/loader:1134:15)\r\n| at Module._load (node:internal/modules/cjs/loader:975:27)\r\n| at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:128:12)\r\n| at node:internal/main/run_main_module:28:49 {\r\n| code: 'MODULE_NOT_FOUND',\r\n| requireStack: []\r\n| }\r\n| \r\n| Node.js v18.19.0\r\n[ci-pipeline/Commit Stage] ❌ Failure - Main Use Node.js 20.x\r\n[ci-pipeline/Commit Stage] exitcode '1': failure\r\n[ci-pipeline/Commit Stage] 🏁 Job failed\r\nError: Job 'Commit Stage' failed\r\nprogrow@progrow-IdeaPad-Creator-5-15IMH05:~/GitRepositories/DevOps/ETLCItest$ act -j integration_test_stage -W .github/workflows/ci-pipeline.yml \r\nINFO[0000] Start server on http://10.33.2.172:34567 \r\n[ci-pipeline/Commit Stage] 🚀 Start image=catthehacker/ubuntu:full-latest\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[ci-pipeline/Commit Stage] 🐳 docker pull image=catthehacker/ubuntu:full-latest platform= username= forcePull=false\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[ci-pipeline/Commit Stage] 🐳 docker create image=catthehacker/ubuntu:full-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[ci-pipeline/Commit Stage] 🐳 docker run image=catthehacker/ubuntu:full-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[ci-pipeline/Commit Stage] 🐳 docker exec cmd=[chown -R 1001:127 /home/progrow/GitRepositories/DevOps/ETLCItest] user=0 workdir=\r\n[ci-pipeline/Commit Stage] 🧪 Matrix: map[node-version:20.x]\r\n[ci-pipeline/Commit Stage] ⭐ Run Main actions/checkout@v3\r\n[ci-pipeline/Commit Stage] 🐳 docker cp src=/home/progrow/GitRepositories/DevOps/ETLCItest/. dst=/home/progrow/GitRepositories/DevOps/ETLCItest\r\n[ci-pipeline/Commit Stage] 🐳 docker exec cmd=[chown -R 1001:127 /home/progrow/GitRepositories/DevOps/ETLCItest] user=0 workdir=\r\n[ci-pipeline/Commit Stage] ✅ Success - Main actions/checkout@v3\r\n[ci-pipeline/Commit Stage] ⭐ Run Main Use Node.js 20.x\r\n[ci-pipeline/Commit Stage] 🐳 docker exec cmd=[chown -R 1001:127 /var/run/act/actions/actions-setup-node@v3/] user=0 workdir=\r\n[ci-pipeline/Commit Stage] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-node@v3/dist/setup/index.js] user= workdir=\r\n| node:internal/modules/cjs/loader:1137\r\n| throw err;\r\n| ^\r\n| \r\n| Error: Cannot find module '/var/run/act/actions/actions-setup-node@v3/dist/setup/index.js'\r\n| at Module._resolveFilename (node:internal/modules/cjs/loader:1134:15)\r\n| at Module._load (node:internal/modules/cjs/loader:975:27)\r\n| at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:128:12)\r\n| at node:internal/main/run_main_module:28:49 {\r\n| code: 'MODULE_NOT_FOUND',\r\n| requireStack: []\r\n| }\r\n| \r\n| Node.js v18.19.0\r\n[ci-pipeline/Commit Stage] ❌ Failure - Main Use Node.js 20.x\r\n[ci-pipeline/Commit Stage] exitcode '1': failure\r\n[ci-pipeline/Commit Stage] 🏁 Job failed\r\nError: Job 'Commit Stage' failed\r\n\r\nUsing the option --action-offline-mode the job succeeded without timeout.\r\nI try second time with --use-new-action-cache after running without the two options and get the same error.\r\nIf this option not works I will use the --action-offline-mode to increase speed and reduce timeouts.\r\nOther question is about this message at the start of the job:\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\nChanging the value of this parameter will increase the performance?","createdAt":"2024-02-02T09:41:17Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":1}}]},{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"> Using the option --use-new-action-cache I'm getting this error\r\n\r\nI forget that full images use a non root user, I have already noticed that bug https://github.com/nektos/act/issues/2183.\r\n\r\nYes keep using `--action-offline-mode` for now, the fastest possible way to execute act.\r\n\r\nIf you need that actions/images get updated, just skip using the offline mode once in a while.\r\n\r\nPS:\r\ncreate a `.actrc` in your cwd with content\r\n```\r\n--action-offline-mode\r\n```\r\nThen you can skip that flag, while running act and it will be applied automatically","createdAt":"2024-02-02T11:46:04Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]}],"createdAt":"2024-02-01T15:37:14Z","id":"I_kwDOCcSpD8597v_U","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2194,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Slow running with timeouts","updatedAt":"2024-02-02T11:46:05Z","url":"https://github.com/nektos/act/issues/2194"},{"assignees":[],"author":{"login":"matthewbaggett"},"body":"### Act version\n\nact version 0.2.58\n\n### Feature description\n\nIt would be nice if artifact-server-port and cache-server-port were consistent and used random ports by default. currently, running two jobs causes a port collision with artifact-server-port but not cache-server-port.","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-02-01T13:38:59Z","id":"I_kwDOCcSpD8596tmP","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODI0","name":"kind/feature-request","description":"New feature or request","color":"0000ff"}],"milestone":null,"number":2192,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"artifact-server-port to use random port by default, like cache-server-port","updatedAt":"2024-02-01T13:38:59Z","url":"https://github.com/nektos/act/issues/2192"},{"assignees":[],"author":{"login":"Saichovsky"},"body":"### Bug report info\r\n\r\n```plain text\r\nact version: 0.2.58\r\nGOOS: darwin\r\nGOARCH: amd64\r\nNumCPU: 10\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n\t/var/run/docker.sock\r\nConfig files: \r\n\t/Users/user/.actrc:\r\n\t\t-P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest\r\n\t\t-P ubuntu-22.04=ghcr.io/catthehacker/ubuntu:act-22.04\r\n\t\t-P ubuntu-20.04=ghcr.io/catthehacker/ubuntu:act-20.04\r\n\t\t-P ubuntu-18.04=ghcr.io/catthehacker/ubuntu:act-18.04\r\nBuild info:\r\n\tGo version: go1.21.6\r\n\tModule path: command-line-arguments\r\n\tMain version: \r\n\tMain path: \r\n\tMain checksum: \r\n\tBuild settings:\r\n\t\t-buildmode: exe\r\n\t\t-compiler: gc\r\n\t\t-ldflags: -X main.version=0.2.58\r\n\t\tDefaultGODEBUG: panicnil=1\r\n\t\tCGO_ENABLED: 1\r\n\t\tCGO_CFLAGS: \r\n\t\tCGO_CPPFLAGS: \r\n\t\tCGO_CXXFLAGS: \r\n\t\tCGO_LDFLAGS: \r\n\t\tGOARCH: amd64\r\n\t\tGOOS: darwin\r\n\t\tGOAMD64: v1\r\nDocker Engine:\r\n\tEngine version: 23.0.6\r\n\tEngine runtime: runc\r\n\tCgroup version: 1\r\n\tCgroup driver: cgroupfs\r\n\tStorage driver: overlay2\r\n\tRegistry URI: https://index.docker.io/v1/\r\n\tOS: Alpine Linux v3.18\r\n\tOS type: linux\r\n\tOS version: 3.18.0\r\n\tOS arch: aarch64\r\n\tOS kernel: 6.1.30-0-virt\r\n\tOS CPU: 2\r\n\tOS memory: 3915 MB\r\n\tSecurity options:\r\n\t\tname=seccomp,profile=builtin\r\n```\r\n\r\n\r\n### Command used with act\r\n\r\n```sh\r\nact --pull=false -P gh-public=bash:alpine3.19 pull_request\r\n```\r\n\r\n\r\n### Describe issue\r\n\r\nAccording to the [documentation](https://docs.github.com/en/actions/learn-github-actions/contexts#needs-context) on the `needs` context, the result of the job that is depended on can either be `success`, `failure`, `skipped` or `cancelled`. When I tried to capture the result of a skipped job, I got none of the valid results, but an empty double-quoted string.\r\n\r\n### Link to GitHub repository\r\n\r\n_No response_\r\n\r\n### Workflow content\r\n\r\n```yml\r\nname: Testing labels logic\r\n\r\non:\r\n pull_request: {}\r\n\r\njobs:\r\n job-one:\r\n if: contains(github.event.pull_request.labels.*.name, 'mylabel')\r\n outputs:\r\n output: ${{steps.step-one.outputs.output}}\r\n name: job-one\r\n runs-on: gh-public\r\n steps:\r\n - id: step-one\r\n run: echo \"output=1\" >> \"$GITHUB_OUTPUT\"\r\n\r\n job-two:\r\n needs: [job-one]\r\n name: job-two\r\n runs-on: gh-public\r\n if: ${{ always() }}\r\n steps:\r\n - id: step-two\r\n run: |\r\n echo 'Result: ${{toJSON(needs.job-one.result)}}'\r\n```\r\n\r\n\r\n### Relevant log output\r\n\r\n```sh\r\n[Testing labels logic/job-one] [DEBUG] evaluating expression 'contains(github.event.pull_request.labels.*.name, 'mylabel')'\r\n[Testing labels logic/job-one] [DEBUG] expression 'contains(github.event.pull_request.labels.*.name, 'mylabel')' evaluated to 'false'\r\n[Testing labels logic/job-one] [DEBUG] Skipping job 'job-one' due to 'contains(github.event.pull_request.labels.*.name, 'mylabel')'\r\n[Testing labels logic/job-two] [DEBUG] evaluating expression '${{ always() }}'\r\n[Testing labels logic/job-two] [DEBUG] expression '${{ always() }}' evaluated to 'true'\r\n[Testing labels logic/job-two] 🚀 Start image=bash:alpine3.19\r\n[Testing labels logic/job-two] 🐳 docker pull image=bash:alpine3.19 platform= username= forcePull=false\r\n[Testing labels logic/job-two] [DEBUG] 🐳 docker pull bash:alpine3.19\r\n[Testing labels logic/job-two] [DEBUG] Image exists? true\r\n[Testing labels logic/job-two] 🐳 docker create image=bash:alpine3.19 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Testing labels logic/job-two] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:false OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=ARM64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:bash:alpine3.19 Volumes:map[] WorkingDir:/Users/user/act-test Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}\r\n[Testing labels logic/job-two] [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:/opt/hostedtoolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Testing-labels-logic-job-two-6e27a7f53bb8478bf7a6e6a7b7b96e9ed9456aecd63f2a0d97956303df9d0cb9-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Testing-labels-logic-job-two-6e27a7f53bb8478bf7a6e6a7b7b96e9ed9456aecd63f2a0d97956303df9d0cb9 Target:/Users/user/act-test ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}\r\n[Testing labels logic/job-two] [DEBUG] input.NetworkAliases ==> [job-two]\r\n[Testing labels logic/job-two] [DEBUG] Created container name=act-Testing-labels-logic-job-two-6e27a7f53bb8478bf7a6e6a7b7b96e9ed9456aecd63f2a0d97956303df9d0cb9 id=095971723abd08d57dc8bafa63beca7aaa392e4918f03866d17efeefcc543b94 from image bash:alpine3.19 (platform: )\r\n[Testing labels logic/job-two] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=ARM64 RUNNER_TEMP=/tmp LANG=C.UTF-8]\r\n[Testing labels logic/job-two] 🐳 docker run image=bash:alpine3.19 platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Testing labels logic/job-two] [DEBUG] Starting container: 095971723abd08d57dc8bafa63beca7aaa392e4918f03866d17efeefcc543b94\r\n[Testing labels logic/job-two] [DEBUG] Started container: 095971723abd08d57dc8bafa63beca7aaa392e4918f03866d17efeefcc543b94\r\n[Testing labels logic/job-two] [DEBUG] Writing entry to tarball workflow/event.json len:2\r\n[Testing labels logic/job-two] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[Testing labels logic/job-two] [DEBUG] Extracting content to '/var/run/act/'\r\n[Testing labels logic/job-two] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /Users/user/act-test): remote not found\r\n[Testing labels logic/job-two] [DEBUG] Found revision: ef28f1e8f69b39e0bf3954658ab4aec9d48542d2\r\n[Testing labels logic/job-two] [DEBUG] expression 'echo 'Result: ${{toJSON(needs.job-one.result)}}'' rewritten to 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))'\r\n[Testing labels logic/job-two] [DEBUG] evaluating expression 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))'\r\n[Testing labels logic/job-two] [DEBUG] expression 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))' evaluated to '%!t(string=echo 'Result: \"\"')'\r\n[Testing labels logic/job-two] [DEBUG] expression 'echo 'Result: ${{toJSON(needs.job-one.result)}}'' rewritten to 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))'\r\n[Testing labels logic/job-two] [DEBUG] evaluating expression 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))'\r\n[Testing labels logic/job-two] [DEBUG] expression 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))' evaluated to '%!t(string=echo 'Result: \"\"')'\r\n[Testing labels logic/job-two] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /Users/user/act-test): remote not found\r\n[Testing labels logic/job-two] [DEBUG] Found revision: ef28f1e8f69b39e0bf3954658ab4aec9d48542d2\r\n[Testing labels logic/job-two] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /Users/user/act-test): remote not found\r\n[Testing labels logic/job-two] [DEBUG] Found revision: ef28f1e8f69b39e0bf3954658ab4aec9d48542d2\r\n[Testing labels logic/job-two] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /Users/user/act-test): remote not found\r\n[Testing labels logic/job-two] [DEBUG] Found revision: ef28f1e8f69b39e0bf3954658ab4aec9d48542d2\r\n[Testing labels logic/job-two] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.10.6:50814/ CI:true GITHUB_ACTION:step-two 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:pull_request GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:job-two GITHUB_REF:refs/pull/%!f(<nil>)/merge GITHUB_REF_NAME:%!f(<nil>)/merge GITHUB_REF_TYPE: GITHUB_REPOSITORY: GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:ef28f1e8f69b39e0bf3954658ab4aec9d48542d2 GITHUB_WORKFLOW:Testing labels logic GITHUB_WORKSPACE:/Users/user/act-test ImageOS:ghpublic RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]\r\n[Testing labels logic/job-two] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /Users/user/act-test): remote not found\r\n[Testing labels logic/job-two] [DEBUG] Found revision: ef28f1e8f69b39e0bf3954658ab4aec9d48542d2\r\n[Testing labels logic/job-two] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /Users/user/act-test): remote not found\r\n[Testing labels logic/job-two] [DEBUG] Found revision: ef28f1e8f69b39e0bf3954658ab4aec9d48542d2\r\n[Testing labels logic/job-two] [DEBUG] evaluating expression ''\r\n[Testing labels logic/job-two] [DEBUG] expression '' evaluated to 'true'\r\n[Testing labels logic/job-two] [DEBUG] expression 'echo 'Result: ${{toJSON(needs.job-one.result)}}'' rewritten to 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))'\r\n[Testing labels logic/job-two] [DEBUG] evaluating expression 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))'\r\n[Testing labels logic/job-two] [DEBUG] expression 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))' evaluated to '%!t(string=echo 'Result: \"\"')'\r\n[Testing labels logic/job-two] ⭐ Run Main echo 'Result: \"\"'\r\n[Testing labels logic/job-two] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0\r\n[Testing labels logic/job-two] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0\r\n[Testing labels logic/job-two] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0\r\n[Testing labels logic/job-two] [DEBUG] Writing entry to tarball workflow/envs.txt len:0\r\n[Testing labels logic/job-two] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0\r\n[Testing labels logic/job-two] [DEBUG] Extracting content to '/var/run/act'\r\n[Testing labels logic/job-two] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /Users/user/act-test): remote not found\r\n[Testing labels logic/job-two] [DEBUG] Found revision: ef28f1e8f69b39e0bf3954658ab4aec9d48542d2\r\n[Testing labels logic/job-two] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /Users/user/act-test): remote not found\r\n[Testing labels logic/job-two] [DEBUG] Found revision: ef28f1e8f69b39e0bf3954658ab4aec9d48542d2\r\n[Testing labels logic/job-two] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /Users/user/act-test): remote not found\r\n[Testing labels logic/job-two] [DEBUG] Found revision: ef28f1e8f69b39e0bf3954658ab4aec9d48542d2\r\n[Testing labels logic/job-two] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /Users/user/act-test): remote not found\r\n[Testing labels logic/job-two] [DEBUG] Found revision: ef28f1e8f69b39e0bf3954658ab4aec9d48542d2\r\n[Testing labels logic/job-two] [DEBUG] expression 'echo 'Result: ${{toJSON(needs.job-one.result)}}'' rewritten to 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))'\r\n[Testing labels logic/job-two] [DEBUG] evaluating expression 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))'\r\n[Testing labels logic/job-two] [DEBUG] expression 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))' evaluated to '%!t(string=echo 'Result: \"\"')'\r\n[Testing labels logic/job-two] [DEBUG] Wrote command \r\n\r\necho 'Result: \"\"'\r\n\r\n to 'workflow/step-two'\r\n[Testing labels logic/job-two] [DEBUG] Writing entry to tarball workflow/step-two len:19\r\n[Testing labels logic/job-two] [DEBUG] Extracting content to '/var/run/act'\r\n[Testing labels logic/job-two] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/step-two] user= workdir=\r\n[Testing labels logic/job-two] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/step-two]'\r\n[Testing labels logic/job-two] [DEBUG] Working directory '/Users/user/act-test'\r\n[Testing labels logic/job-two] | Result: \"\"\r\n[Testing labels logic/job-two] ✅ Success - Main echo 'Result: \"\"'\r\n[Testing labels logic/job-two] [DEBUG] expression 'echo 'Result: ${{toJSON(needs.job-one.result)}}'' rewritten to 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))'\r\n[Testing labels logic/job-two] [DEBUG] evaluating expression 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))'\r\n[Testing labels logic/job-two] [DEBUG] expression 'format('echo ''Result: {0}''', toJSON(needs.job-one.result))' evaluated to '%!t(string=echo 'Result: \"\"')'\r\n[Testing labels logic/job-two] Cleaning up container for job job-two\r\n[Testing labels logic/job-two] [DEBUG] Removed container: 095971723abd08d57dc8bafa63beca7aaa392e4918f03866d17efeefcc543b94\r\n[Testing labels logic/job-two] [DEBUG] 🐳 docker volume rm act-Testing-labels-logic-job-two-6e27a7f53bb8478bf7a6e6a7b7b96e9ed9456aecd63f2a0d97956303df9d0cb9\r\n[Testing labels logic/job-two] [DEBUG] 🐳 docker volume rm act-Testing-labels-logic-job-two-6e27a7f53bb8478bf7a6e6a7b7b96e9ed9456aecd63f2a0d97956303df9d0cb9-env\r\n[Testing labels logic/job-two] 🏁 Job succeeded\r\n[Testing labels logic/job-two] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /Users/user/act-test): remote not found\r\n[Testing labels logic/job-two] [DEBUG] Found revision: ef28f1e8f69b39e0bf3954658ab4aec9d48542d2\r\n```\r\n\r\n\r\n### Additional information\r\n\r\n_No response_","closed":false,"closedAt":null,"comments":[{"author":{"login":"Saichovsky"},"authorAssociation":"NONE","body":"![image](https://github.com/nektos/act/assets/8171718/9b088623-7d18-4731-a185-0c7476659a6c)\r\n\r\nHere is what the output for the same workflow looks like in GitHub Actions","createdAt":"2024-02-01T10:47:01Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]}],"createdAt":"2024-02-01T10:13:54Z","id":"I_kwDOCcSpD8595A2g","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2190,"projectCards":[],"reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":1}}],"state":"OPEN","title":"Invalid result from skipped job","updatedAt":"2024-02-01T10:47:02Z","url":"https://github.com/nektos/act/issues/2190"},{"assignees":[],"author":{"login":"shqear93"},"body":"### Bug report info\r\n\r\n```plain text\r\nact version: 0.2.57\r\nGOOS: darwin\r\nGOARCH: arm64\r\nNumCPU: 10\r\nDocker host: unix:///Users/khaled-abushqear/.docker/run/docker.sock\r\nSockets found:\r\n /var/run/docker.sock\r\n $HOME/.docker/run/docker.sock\r\nConfig files: \r\n /Users/khaled-abushqear/.actrc:\r\n -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:runner-latest\r\n -P ubuntu-22.04=ghcr.io/catthehacker/ubuntu:runner-22.04\r\n -P ubuntu-20.04=ghcr.io/catthehacker/ubuntu:runner-20.04\r\n -P ubuntu-18.04=ghcr.io/catthehacker/ubuntu:runner-18.04\r\nBuild info:\r\n Go version: go1.20.12\r\n Module path: github.com/nektos/act\r\n Main version: (devel)\r\n Main path: github.com/nektos/act\r\n Main checksum: \r\n Build settings:\r\n -buildmode: exe\r\n -compiler: gc\r\n -trimpath: true\r\n CGO_ENABLED: 0\r\n GOARCH: arm64\r\n GOOS: darwin\r\n vcs: git\r\n vcs.revision: e8856f0fb00fcdd16eef2325b845f55f5d346f51\r\n vcs.time: 2023-08-21T16:17:06Z\r\n vcs.modified: true\r\nDocker Engine:\r\n Engine version: 24.0.6\r\n Engine runtime: runc\r\n Cgroup version: 2\r\n Cgroup driver: cgroupfs\r\n Storage driver: overlay2\r\n Registry URI: https://index.docker.io/v1/\r\n OS: Docker Desktop\r\n OS type: linux\r\n OS version: \r\n OS arch: aarch64\r\n OS kernel: 6.4.16-linuxkit\r\n OS CPU: 10\r\n OS memory: 7844 MB\r\n Security options:\r\n name=seccomp,profile=unconfined\r\n name=cgroupns\r\n```\r\n\r\n\r\n### Command used with act\r\n\r\n```sh\r\ngh act -b --container-architecture linux/amd64 -W .github/workflows/connection_test.yml --eventpath .github/connection_test_payload_example.json --var-file .github/sample.variables.env\r\n```\r\n\r\n\r\n### Describe issue\r\n\r\nThe workflows is a custom action located at (./.github/actions/connection-tester), I use it in my main action as follows: \r\n\r\n```yaml\r\n - name: Executing the action\r\n id: execute-test\r\n uses: ./.github/actions/connection-tester\r\n with:\r\n env: ${{ inputs.kafka_env }}\r\n subnet_id: ${{ inputs.subnet_id }}\r\n```\r\n\r\nI have defined output `execution_output` as example\r\n```yaml\r\noutputs:\r\n execution_output:\r\n description: The execution output\r\n value: ${{ steps.get-execution-output.outputs.execution_output }}\r\n```\r\nIn the step \"Copy outputs to variables\" I define the `id=get-execution-output` which fills this variable with the needed data\r\n\r\nin GitHub workflows, if the id was not defined -> the main workflow won't be able to read it:\r\n\r\n```\r\n${{ steps.execute-test.outputs.execution_output }}\r\n# output is empty\r\n```\r\n\r\nin act-cli, even if id was not defined, it fills the content in the variable `execution_output`\r\n\r\nI guess the reason is related to the scopes, it looks like GH workflow defines a separate scope for GITHUB_OUTPUT for each step, but in act-cli, it defines GITHUB_OUTPUT on the custom action level\r\n\r\n\r\n### Link to GitHub repository\r\n\r\n_No response_\r\n\r\n### Workflow content\r\n\r\n```yml\r\nname: Connectivity Test\r\ndescription: Connectivity Test\r\n\r\ninputs:\r\n env:\r\n description: Target Kafka Cluster\r\n required: true\r\n subnet_id:\r\n description: The subnet ID (to initialize the instance)\r\n required: true\r\n\r\noutputs:\r\n execution_output:\r\n description: The execution output\r\n value: ${{ steps.get-execution-output.outputs.execution_output }}\r\n md_output:\r\n description: The execution output in markdown\r\n value: ${{ steps.get-execution-output.outputs.md_output }}\r\n rc:\r\n description: The execution return code\r\n value: ${{ steps.get-execution-output.outputs.rc }}\r\n\r\nruns:\r\n using: composite\r\n steps:\r\n\r\n - name: Play Ansible Playbook\r\n uses: arillso/action.playbook@master\r\n continue-on-error: true\r\n with:\r\n playbook: \"${{ github.action_path }}/ansible/main_play.yml\"\r\n galaxy_file: \"${{ github.action_path }}/ansible/requirements.yml\"\r\n extra_vars: \"subnet_id=${{ inputs.subnet_id }} env=${{ inputs.env }}\"\r\n env:\r\n ANSIBLE_HOST_KEY_CHECKING: 'false'\r\n ANSIBLE_DEPRECATION_WARNINGS: 'false'\r\n\r\n - name: Copy outputs to variables\r\n id: get-execution-output\r\n working-directory: ${{ github.action_path }}\r\n shell: bash\r\n run: ./copy-outputs.sh\r\n```\r\n\r\n\r\n### Relevant log output\r\n\r\n```sh\r\n➜ kafka-tests git:(feature/update=summary-html) ✗ gh act -b --container-architecture linux/amd64 -W .github/workflows/connection_test.yml --eventpath .github/connection_test_payload_example.json --var-file .github/sample.variables.env\r\n[Kafka Connection Test/Performing Connectivity Test] 🚀 Start image=ghcr.io/catthehacker/ubuntu:runner-latest\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[Kafka Connection Test/Performing Connectivity Test] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:runner-latest platform=linux/amd64 username= forcePull=true\r\nINFO[0001] Parallel tasks (0) below minimum, setting to 1 \r\n[Kafka Connection Test/Performing Connectivity Test] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:runner-latest platform=linux/amd64 entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Kafka Connection Test/Performing Connectivity Test] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:runner-latest platform=linux/amd64 entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Kafka Connection Test/Performing Connectivity Test] 🐳 docker exec cmd=[chown -R 1001:1001 /Users/khaled-abushqear/workspace/kafka-tests] user=0 workdir=\r\n| chown: changing ownership of '/Users/khaled-abushqear/workspace/kafka-tests/private_key.pem': Permission denied\r\n| chown: changing ownership of '/Users/khaled-abushqear/workspace/kafka-tests/.git/objects/25/fd944077244789ea6a3e347ed60b8a57db6d56': Permission denied\r\n.\r\n. (not sure why there are too much permission related logs here)\r\n.\r\n[Kafka Connection Test/Performing Connectivity Test] ⭐ Run Main Output Inputs\r\n[Kafka Connection Test/Performing Connectivity Test] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=\r\n| {\r\n| client_env: dev-rh,\r\n| kafka_env: Staging,\r\n| subnet_id: subnet-c64a20b0\r\n| }\r\n[Kafka Connection Test/Performing Connectivity Test] ✅ Success - Main Output Inputs\r\n[Kafka Connection Test/Performing Connectivity Test] ⭐ Run Main Executing the action\r\n[Kafka Connection Test/Performing Connectivity Test] ⭐ Run Main Copy outputs to variables\r\n[Kafka Connection Test/Performing Connectivity Test] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/execute-test-composite-0.sh] user= workdir=/Users/khaled-abushqear/workspace/kafka-tests/.github/actions/connection-tester\r\n[Kafka Connection Test/Performing Connectivity Test] ✅ Success - Main Copy outputs to variables\r\n[Kafka Connection Test/Performing Connectivity Test] ⚙ ::set-output:: md_output=# Results\r\n\r\n+ # -----------------------------------------\r\n+ \r\n+ Connection was Failed ❌ \r\n+ NoBrokersAvailable\r\n+ \r\n+ # -----------------------------------------\r\n+ \r\n\r\n[Kafka Connection Test/Performing Connectivity Test] ⚙ ::set-output:: error=this\r\nis\r\nan\r\nerror\r\n[Kafka Connection Test/Performing Connectivity Test] ⚙ ::set-output:: rc=0\r\n[Kafka Connection Test/Performing Connectivity Test] ⚙ ::set-output:: execution_output=\r\n# -----------------------------------------\r\n\r\nConnection was Failed ❌ \r\nNoBrokersAvailable\r\n\r\n# -----------------------------------------\r\n\r\n[Kafka Connection Test/Performing Connectivity Test] ⚙ ::set-output:: md_output=\r\n[Kafka Connection Test/Performing Connectivity Test] ⚙ ::set-output:: rc=\r\n[Kafka Connection Test/Performing Connectivity Test] ⚙ ::set-output:: execution_output=\r\n[Kafka Connection Test/Performing Connectivity Test] ✅ Success - Main Executing the action\r\n[Kafka Connection Test/Performing Connectivity Test] ⚙ ::set-output:: execution_output=\r\n# -----------------------------------------\r\n\r\nConnection was Failed ❌ \r\nNoBrokersAvailable\r\n\r\n# -----------------------------------------\r\n\r\n[Kafka Connection Test/Performing Connectivity Test] ⚙ ::set-output:: md_output=# Results\r\n```diff\r\n+ # -----------------------------------------\r\n+ \r\n+ Connection was Failed ❌ \r\n+ NoBrokersAvailable\r\n+ \r\n+ # -----------------------------------------\r\n+ \r\n`-`-`\r\n[Kafka Connection Test/Performing Connectivity Test] ⚙ ::set-output:: error=this\r\nis\r\nan\r\nerror\r\n[Kafka Connection Test/Performing Connectivity Test] ⚙ ::set-output:: rc=0\r\n[Kafka Connection Test/Performing Connectivity Test] ⭐ Run Main debug\r\n[Kafka Connection Test/Performing Connectivity Test] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/2] user= workdir=\r\n| rc=0\r\n| error:\r\n| this\r\n| is\r\n| an\r\n| error\r\n| md_output:\r\n| # Results\r\n| ```diff\r\n| + # -----------------------------------------\r\n| + \r\n| + Connection was Failed ❌ \r\n| + NoBrokersAvailable\r\n| + \r\n| + # -----------------------------------------\r\n| + \r\n| ```\r\n| execution_output:\r\n| \r\n| # -----------------------------------------\r\n| \r\n| Connection was Failed ❌ \r\n| NoBrokersAvailable\r\n| \r\n| # -----------------------------------------\r\n| \r\n[Kafka Connection Test/Performing Connectivity Test] ✅ Success - Main debug\r\n[Kafka Connection Test/Performing Connectivity Test] ⭐ Run Main Adding results to the summary\r\n[Kafka Connection Test/Performing Connectivity Test] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/3] user= workdir=\r\n[Kafka Connection Test/Performing Connectivity Test] ✅ Success - Main Adding results to the summary\r\n[Kafka Connection Test/Performing Connectivity Test] ⭐ Run Post Executing the action\r\n[Kafka Connection Test/Performing Connectivity Test] ✅ Success - Post Executing the action\r\n[Kafka Connection Test/Performing Connectivity Test] Cleaning up container for job Performing Connectivity Test\r\n[Kafka Connection Test/Performing Connectivity Test] 🏁 Job succeeded\r\n```\r\n\r\n\r\n### Additional information\r\n\r\n_No response_","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-01-31T00:05:58Z","id":"I_kwDOCcSpD859tS13","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2184,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"GITHUB_OUTPUT scope for custom actions seems not same as GH actions","updatedAt":"2024-01-31T00:07:25Z","url":"https://github.com/nektos/act/issues/2184"},{"assignees":[],"author":{"login":"phoolish"},"body":"### Act version\r\n\r\n0.2.57\r\n\r\n### Feature description\r\n\r\nThe [README.md documentation](https://github.com/nektos/act#github_token) recommends using `act -s GITHUB_TOKEN=\"$(gh auth token)\"` for setting your github token during runs, but adding the argument to your `.actrc` ignores the command substitution and results in `$GITHUB_TOKEN` being set to `\"$(gh auth token)\"`.\r\n\r\nIt would be helpful if `.actrc` properly evaluated the commands, but I understand if that is a large undertaking and is better left to a wrapper script.","closed":false,"closedAt":null,"comments":[{"author":{"login":"luckydonald"},"authorAssociation":"NONE","body":"This would also allow for other commands like using Bitwarden-cli or something similar to fetch secrets.","createdAt":"2024-01-29T00:25:43Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]}],"createdAt":"2024-01-19T22:17:49Z","id":"I_kwDOCcSpD858qe3W","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODI0","name":"kind/feature-request","description":"New feature or request","color":"0000ff"}],"milestone":null,"number":2161,"projectCards":[],"reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":2}}],"state":"OPEN","title":".actrc ignores command substitution","updatedAt":"2024-01-29T00:25:44Z","url":"https://github.com/nektos/act/issues/2161"},{"assignees":[],"author":{"login":"totechite"},"body":"### Bug report info\n\n```plain text\nact version: 0.2.57-4-gcd40f3f-dirty\r\nGOOS: linux\r\nGOARCH: amd64\r\nNumCPU: 16\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n /var/run/docker.sock\r\nConfig files:\r\nBuild info:\r\n Go version: go1.21.6\r\n Module path: command-line-arguments\r\n Main version:\r\n Main path:\r\n Main checksum:\r\n Build settings:\r\n -buildmode: exe\r\n -compiler: gc\r\n -ldflags: -X main.version=0.2.57-4-gcd40f3f-dirty\r\n DefaultGODEBUG: panicnil=1\r\n CGO_ENABLED: 1\r\n CGO_CFLAGS:\r\n CGO_CPPFLAGS:\r\n CGO_CXXFLAGS:\r\n CGO_LDFLAGS:\r\n GOARCH: amd64\r\n GOOS: linux\r\n GOAMD64: v1\r\nDocker Engine:\r\n Engine version: 24.0.6\r\n Engine runtime: runc\r\n Cgroup version: 1\r\n Cgroup driver: cgroupfs\r\n Storage driver: overlay2\r\n Registry URI: https://index.docker.io/v1/\r\n OS: Docker Desktop\r\n OS type: linux\r\n OS version:\r\n OS arch: x86_64\r\n OS kernel: 5.15.133.1-microsoft-standard-WSL2\r\n OS CPU: 16\r\n OS memory: 15374 MB\r\n Security options:\r\n name=seccomp,profile=unconfined\n```\n\n\n### Command used with act\n\n```sh\nact -P IMAGE=debian-12=nektos/act-environments-ubuntu:22.04\n```\n\n\n### Describe issue\n\nIf we attempt use custom runner label `IMAGE=debian-12` at self-hosted-runner, act failed and puts this error log. \r\nI guess that `-P` parameter parser is unsupported value containd multi \"=\" string. \r\n> [test workflow/demo] 🚧 Skipping unsupported platform -- Try running with `-P IMAGE=debian-12=...\r\n\r\n\n\n### Link to GitHub repository\n\n_No response_\n\n### Workflow content\n\n```yml\nname: GitHubActions on GitHub Enterprise Server\r\n\r\non:\r\n workflow_dispatch:\r\n\r\njobs:\r\n demo:\r\n runs-on: [ IMAGE=debian-12 ]\r\n steps:\r\n - name:\r\n run: |\r\n echo \"konnichi wa\"\n```\n\n\n### Relevant log output\n\n```sh\nact -v\r\nDEBU[0000] Conditional GET for notices etag=492cc8e5-303b-4af6-ab7f-7eddf714ee2f \r\nDEBU[0000] Loading environment from /work/.env\r\nDEBU[0000] Loading action inputs from /work/.input\r\nDEBU[0000] Loading secrets from /work/.secrets\r\nDEBU[0000] Loading vars from /work/.vars\r\nDEBU[0000] Evaluated matrix inclusions: map[]\r\nDEBU[0000] Loading workflows from '/work/.github/workflows'\r\nDEBU[0000] Loading workflows recursively\r\nDEBU[0000] Found workflow 'main.yml' in '/work/.github/workflows/main.yml' \r\nDEBU[0000] Reading workflow '/work/.github/workflows/main.yml'\r\nDEBU[0000] Preparing plan with all jobs\r\nDEBU[0000] Using the only detected workflow event: workflow_dispatch\r\nDEBU[0000] Planning jobs for event: workflow_dispatch\r\n? Please choose the default image you want to use with act:\r\n - Large size image: ca. 17GB download + 53.1GB storage, you will need 75GB of free disk space, snapshots of GitHub Hosted Runners without snap and pulled docker images\r\n - Medium size image: ~500MB, includes only necessary tools to bootstrap actions and aims to be compatible with most actions\r\n - Micro size image: <200MB, contains only NodeJS required to bootstrap actions, doesn't work with all actions\r\n\r\nDefault image and other options can be changed manually in ~/.actrc (please refer to https://github.com/nektos/act#configuration for additional information about file structure) [Use arrows to move, type to filter, ? for more help]\r\n Large\r\nDEBU[0000] Saving notices etag=492cc8e5-303b-4af6-ab7f-7eddf714ee2f \r\nDEBU[0000] No new notices\n```\n\n\n### Additional information\n\n_No response_","closed":false,"closedAt":null,"comments":[{"author":{"login":"ChristopherHX"},"authorAssociation":"CONTRIBUTOR","body":"> `nektos/act-environments-ubuntu:22.04`\r\n\r\nDoes this image even exist? I cannot remember it has been updated past 18.04","createdAt":"2024-01-26T08:44:45Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"totechite"},"authorAssociation":"NONE","body":"Sorry to have confused you. As you say, that container image does not exist.\r\nIn fact it is supposed to be set up on my local machine where I manage it.","createdAt":"2024-01-27T04:28:20Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]}],"createdAt":"2024-01-19T20:49:59Z","id":"I_kwDOCcSpD858qDIz","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2159,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Error: Reject platforms name contained \"=\"","updatedAt":"2024-01-27T04:28:22Z","url":"https://github.com/nektos/act/issues/2159"},{"assignees":[],"author":{"login":"fwh-dc"},"body":"### Bug report info\r\n\r\n```plain text\r\n.\r\n```\r\n\r\n\r\n### Command used with act\r\n\r\n```sh\r\nact -j no-legacy\r\n```\r\n\r\n\r\n### Describe issue\r\n\r\n\r\nI am trying the above command with the openssl repo: https://github.com/openssl/openssl.git\r\n\r\nBut it hangs forever after executing all the tests.\r\n\r\n### Link to GitHub repository\r\n\r\n_No response_\r\n\r\n### Workflow content\r\n\r\n```yml\r\nPlease check the openssl repo\r\n```\r\n\r\n\r\n### Relevant log output\r\n\r\n```sh\r\n.\r\n```\r\n\r\n\r\n### Additional information\r\n\r\n_No response_","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-01-19T09:55:33Z","id":"I_kwDOCcSpD858lNL2","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2158,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"act hangs when executing workflow","updatedAt":"2024-01-19T09:57:04Z","url":"https://github.com/nektos/act/issues/2158"},{"assignees":[],"author":{"login":"iby"},"body":"### Bug report info\n\n```plain text\nact version: 0.2.57\r\nGOOS: darwin\r\nGOARCH: arm64\r\nNumCPU: 14\r\nDocker host: unix:///Users/iby/.colima/default/docker.sock\r\nSockets found:\r\n\t$HOME/.colima/docker.sock\r\nConfig files: \r\n\t/Users/iby/.actrc:\r\n\t\t-P ubuntu-latest=catthehacker/ubuntu:act-latest\r\n\t\t-P ubuntu-22.04=catthehacker/ubuntu:act-22.04\r\n\t\t-P ubuntu-20.04=catthehacker/ubuntu:act-20.04\r\n\t\t-P ubuntu-18.04=catthehacker/ubuntu:act-18.04\r\nBuild info:\r\n\tGo version: go1.21.5\r\n\tModule path: command-line-arguments\r\n\tMain version: \r\n\tMain path: \r\n\tMain checksum: \r\n\tBuild settings:\r\n\t\t-buildmode: exe\r\n\t\t-compiler: gc\r\n\t\t-ldflags: -X main.version=0.2.57\r\n\t\tDefaultGODEBUG: panicnil=1\r\n\t\tCGO_ENABLED: 1\r\n\t\tCGO_CFLAGS: \r\n\t\tCGO_CPPFLAGS: \r\n\t\tCGO_CXXFLAGS: \r\n\t\tCGO_LDFLAGS: \r\n\t\tGOARCH: arm64\r\n\t\tGOOS: darwin\r\nDocker Engine:\r\n\tEngine version: 24.0.7\r\n\tEngine runtime: runc\r\n\tCgroup version: 2\r\n\tCgroup driver: systemd\r\n\tStorage driver: overlay2\r\n\tRegistry URI: https://index.docker.io/v1/\r\n\tOS: Ubuntu 23.10\r\n\tOS type: linux\r\n\tOS version: 23.10\r\n\tOS arch: aarch64\r\n\tOS kernel: 6.5.0-10-generic\r\n\tOS CPU: 8\r\n\tOS memory: 7925 MB\r\n\tSecurity options:\r\n\t\tname=apparmor\r\n\t\tname=seccomp,profile=builtin\r\n\t\tname=cgroupns\n```\n\n\n### Command used with act\n\n```sh\nact\n```\n\n\n### Describe issue\n\nBy default, act loads dotenv `.env` file, that can contain `MY_VAR` variable. The same variable can be defined in global workflow and local step `env` config:\r\n\r\nGlobal workflow `env` config | Local step `env` config | Dotenv `.env` file | echo $MY_VAR | Expected\r\n-- | -- | -- | -- | --\r\n | | 123 | 123 | ✅\r\n | bar | | bar | ✅\r\n | bar | 123 | bar | ✅\r\nfoo | | | foo | ✅\r\nfoo | | 123 | 123 | ❌\r\nfoo | bar | | bar | ✅\r\nfoo | bar | 123 | bar | ✅\r\n\r\nWhen the env variable is explicitly defined in global workflow config, it gets overwritten by dotenv `.env` file variable, which gets loaded by default – this shouldn't be happening as dotenv variables should not override already defined values.\n\n### Link to GitHub repository\n\n_No response_\n\n### Workflow content\n\n```yml\non:\r\n push: { branches: [ main ] }\r\n\r\nenv:\r\n MY_VAR: foo\r\n\r\njobs:\r\n main:\r\n runs-on: ubuntu-latest\r\n steps:\r\n - env:\r\n# MY_VAR: bar\r\n run: echo \">>> ${MY_VAR}\"\n```\n\n\n### Relevant log output\n\n```sh\nWARN ⚠ You are using Apple M-series chip and you have not specified container architecture, you might encounter issues while running act. If so, try running it with '--container-architecture linux/amd64'. ⚠ \r\nWARN[0000] unable to get git repo: remote not found \r\nWARN[0000] unable to get git ref: reference not found \r\nWARN[0000] unable to get git revision: reference not found \r\n[main.yml/main] 🚀 Start image=catthehacker/ubuntu:act-latest\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[main.yml/main] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[main.yml/main] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[main.yml/main] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[main.yml/main] unable to get git repo: remote not found\r\n[main.yml/main] unable to get git ref: reference not found\r\n[main.yml/main] unable to get git revision: reference not found\r\n[main.yml/main] unable to get git repo: remote not found\r\n[main.yml/main] unable to get git ref: reference not found\r\n[main.yml/main] unable to get git revision: reference not found\r\n[main.yml/main] unable to get git repo: remote not found\r\n[main.yml/main] unable to get git ref: reference not found\r\n[main.yml/main] unable to get git revision: reference not found\r\n[main.yml/main] unable to get git repo: remote not found\r\n[main.yml/main] unable to get git ref: reference not found\r\n[main.yml/main] unable to get git revision: reference not found\r\n[main.yml/main] unable to get git repo: remote not found\r\n[main.yml/main] unable to get git ref: reference not found\r\n[main.yml/main] unable to get git revision: reference not found\r\n[main.yml/main] unable to get git repo: remote not found\r\n[main.yml/main] unable to get git ref: reference not found\r\n[main.yml/main] unable to get git revision: reference not found\r\n[main.yml/main] ⭐ Run Main echo \">>> ${MY_VAR}\"\r\n[main.yml/main] unable to get git repo: remote not found\r\n[main.yml/main] unable to get git ref: reference not found\r\n[main.yml/main] unable to get git revision: reference not found\r\n[main.yml/main] unable to get git repo: remote not found\r\n[main.yml/main] unable to get git ref: reference not found\r\n[main.yml/main] unable to get git revision: reference not found\r\n[main.yml/main] unable to get git repo: remote not found\r\n[main.yml/main] unable to get git ref: reference not found\r\n[main.yml/main] unable to get git revision: reference not found\r\n[main.yml/main] unable to get git repo: remote not found\r\n[main.yml/main] unable to get git ref: reference not found\r\n[main.yml/main] unable to get git revision: reference not found\r\n[main.yml/main] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=\r\n| >>> 123\r\n[main.yml/main] ✅ Success - Main echo \">>> ${MY_VAR}\"\r\n[main.yml/main] Cleaning up container for job main\r\n[main.yml/main] 🏁 Job succeeded\r\n[main.yml/main] unable to get git repo: remote not found\r\n[main.yml/main] unable to get git ref: reference not found\r\n[main.yml/main] unable to get git revision: reference not found\n```\n\n\n### Additional information\n\n_No response_","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-01-09T19:43:17Z","id":"I_kwDOCcSpD857kCoH","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2151,"projectCards":[],"reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":1}}],"state":"OPEN","title":".env inconsistently overshadows explicit workflow environment variables","updatedAt":"2024-01-09T19:43:17Z","url":"https://github.com/nektos/act/issues/2151"},{"assignees":[],"author":{"login":"WaterNewt"},"body":"### Bug report info\n\n```plain text\nact version: 0.2.57\r\nGOOS: darwin\r\nGOARCH: arm64\r\nNumCPU: 8\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n /var/run/docker.sock\r\n $HOME/.docker/run/docker.sock\r\nConfig files: \r\n /Users/waternewt423/.actrc:\r\n -P ubuntu-latest=node:16-buster-slim\r\n -P ubuntu-22.04=node:16-bullseye-slim\r\n -P ubuntu-20.04=node:16-buster-slim\r\n -P ubuntu-18.04=node:16-buster-slim\r\nBuild info:\r\n Go version: go1.20.12\r\n Module path: github.com/nektos/act\r\n Main version: (devel)\r\n Main path: github.com/nektos/act\r\n Main checksum: \r\n Build settings:\r\n -buildmode: exe\r\n -compiler: gc\r\n -ldflags: -s -w -X main.version=0.2.57 -X main.commit=4fae81efe4cdd9e09e7ef8e874a2d63b1ed98524 -X main.date=2024-01-01T02:17:54Z -X main.builtBy=goreleaser\r\n CGO_ENABLED: 0\r\n GOARCH: arm64\r\n GOOS: darwin\r\n vcs: git\r\n vcs.revision: 4fae81efe4cdd9e09e7ef8e874a2d63b1ed98524\r\n vcs.time: 2024-01-01T02:17:35Z\r\n vcs.modified: false\r\nDocker Engine:\r\n Engine version: 24.0.7\r\n Engine runtime: runc\r\n Cgroup version: 2\r\n Cgroup driver: cgroupfs\r\n Storage driver: overlay2\r\n Registry URI: https://index.docker.io/v1/\r\n OS: Docker Desktop\r\n OS type: linux\r\n OS version: \r\n OS arch: aarch64\r\n OS kernel: 6.5.11-linuxkit\r\n OS CPU: 8\r\n OS memory: 3928 MB\r\n Security options:\r\n name=seccomp,profile=unconfined\r\n name=cgroupns\n```\n\n\n### Command used with act\n\n```sh\nact --container-architecture linux/amd64 -v\n```\n\n\n### Describe issue\n\nI ran act to test my github workflow. And it gave me this error message:\r\n`::error::Version 3.11.0 with arch x64 not found%0AThe list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json`\r\nI went to `https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json`, and one of the items was this:\r\n`{\r\n \"version\": \"3.11.0\",\r\n \"stable\": true,\r\n \"release_url\": \"https://github.com/actions/python-versions/releases/tag/3.11.0-3730290910\",\r\n \"files\": [\r\n {\r\n \"filename\": \"python-3.11.0-darwin-x64.tar.gz\",\r\n \"arch\": \"x64\",\r\n \"platform\": \"darwin\",\r\n \"download_url\": \"https://github.com/actions/python-versions/releases/download/3.11.0-3730290910/python-3.11.0-darwin-x64.tar.gz\"\r\n },\r\n {\r\n \"filename\": \"python-3.11.0-linux-18.04-x64.tar.gz\",\r\n \"arch\": \"x64\",\r\n \"platform\": \"linux\",\r\n \"platform_version\": \"18.04\",\r\n \"download_url\": \"https://github.com/actions/python-versions/releases/download/3.11.0-3730290910/python-3.11.0-linux-18.04-x64.tar.gz\"\r\n },\r\n {\r\n \"filename\": \"python-3.11.0-linux-20.04-x64.tar.gz\",\r\n \"arch\": \"x64\",\r\n \"platform\": \"linux\",\r\n \"platform_version\": \"20.04\",\r\n \"download_url\": \"https://github.com/actions/python-versions/releases/download/3.11.0-3730290910/python-3.11.0-linux-20.04-x64.tar.gz\"\r\n },\r\n {\r\n \"filename\": \"python-3.11.0-linux-22.04-x64.tar.gz\",\r\n \"arch\": \"x64\",\r\n \"platform\": \"linux\",\r\n \"platform_version\": \"22.04\",\r\n \"download_url\": \"https://github.com/actions/python-versions/releases/download/3.11.0-3730290910/python-3.11.0-linux-22.04-x64.tar.gz\"\r\n },\r\n {\r\n \"filename\": \"python-3.11.0-win32-x64.zip\",\r\n \"arch\": \"x64\",\r\n \"platform\": \"win32\",\r\n \"download_url\": \"https://github.com/actions/python-versions/releases/download/3.11.0-3730290910/python-3.11.0-win32-x64.zip\"\r\n },\r\n {\r\n \"filename\": \"python-3.11.0-win32-x86.zip\",\r\n \"arch\": \"x86\",\r\n \"platform\": \"win32\",\r\n \"download_url\": \"https://github.com/actions/python-versions/releases/download/3.11.0-3730290910/python-3.11.0-win32-x86.zip\"\r\n }\r\n ]\r\n }`\r\n\r\nThen, I tried it with a later version of python (3.12.0), it still gave me the same error:\r\n`::error::Version 3.12.0 with arch x64 not found%0AThe list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json`\n\n### Link to GitHub repository\n\n_No response_\n\n### Workflow content\n\n```yml\nname: Run Tests\r\n\r\non:\r\n push:\r\n branches:\r\n - main\r\n\r\njobs:\r\n tests:\r\n runs-on: ubuntu-20.04\r\n\r\n steps:\r\n - name: Checkout code\r\n uses: actions/checkout@v2\r\n\r\n - name: Set up Python\r\n uses: actions/setup-python@v2\r\n with:\r\n python-version: 3.11.0\r\n\r\n - name: Install dependencies\r\n run: |\r\n pip install -r requirements.txt\r\n # You may need to adjust the above line based on your project's requirements\r\n\r\n - name: Run tests\r\n run: |\r\n python -m unittest discover tests\n```\n\n\n### Relevant log output\n\n```sh\n[Run Tests/tests] 🚀 Start image=node:16-buster-slim\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[Run Tests/tests] 🐳 docker pull image=node:16-buster-slim platform=linux/amd64 username= forcePull=true\r\n[Run Tests/tests] using DockerAuthConfig authentication for docker pull\r\nINFO[0004] Parallel tasks (0) below minimum, setting to 1 \r\n[Run Tests/tests] 🐳 docker create image=node:16-buster-slim platform=linux/amd64 entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Run Tests/tests] 🐳 docker run image=node:16-buster-slim platform=linux/amd64 entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[Run Tests/tests] ☁ git clone 'https://github.com/actions/setup-python' # ref=v2\r\n[Run Tests/tests] ⭐ Run Main Checkout code\r\n[Run Tests/tests] 🐳 docker cp src=/Users/waternewt423/Library/CloudStorage/OneDrive-Personal/Documents/Github Repositories/Cloned/penmon/. dst=/Users/waternewt423/Library/CloudStorage/OneDrive-Personal/Documents/Github Repositories/Cloned/penmon\r\n[Run Tests/tests] ✅ Success - Main Checkout code\r\n[Run Tests/tests] ⭐ Run Main Set up Python\r\n[Run Tests/tests] 🐳 docker cp src=/Users/waternewt423/.cache/act/actions-setup-python@v2/ dst=/var/run/act/actions/actions-setup-python@v2/\r\n[Run Tests/tests] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-python@v2/dist/setup/index.js] user= workdir=\r\n[Run Tests/tests] 💬 ::debug::Semantic version spec of 3.12.0 is 3.12.0\r\n[Run Tests/tests] 💬 ::debug::isExplicit: 3.12.0\r\n[Run Tests/tests] 💬 ::debug::explicit? true\r\n[Run Tests/tests] 💬 ::debug::checking cache: /opt/hostedtoolcache/Python/3.12.0/x64\r\n[Run Tests/tests] 💬 ::debug::not found\r\n| Version 3.12.0 was not found in the local cache\r\n[Run Tests/tests] 💬 ::debug::check 3.13.0-alpha.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.13.0-alpha.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::arm64===x64 && darwin===linux\r\n[Run Tests/tests] 💬 ::debug::x64===x64 && darwin===linux\r\n[Run Tests/tests] 💬 ::debug::x64===x64 && linux===linux\r\n[Run Tests/tests] 💬 ::debug::x64===x64 && linux===linux\r\n[Run Tests/tests] 💬 ::debug::x64===x64 && win32===linux\r\n[Run Tests/tests] 💬 ::debug::x86===x64 && win32===linux\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-rc.3 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-rc.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-rc.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-beta.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-beta.3 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-beta.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-beta.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-alpha.7 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-alpha.6 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-alpha.5 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-alpha.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-alpha.3 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-alpha.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.12.0-alpha.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.7 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.6 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.5 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.3 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-rc.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-rc.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-beta.5 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-beta.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-beta.3 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-beta.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-beta.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-alpha.7 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-alpha.6 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-alpha.5 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-alpha.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-alpha.3 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-alpha.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.11.0-alpha.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.13 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.12 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.11 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.10 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.9 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.8 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.7 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.6 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.5 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.3 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-rc.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-rc.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-beta.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-beta.3 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-beta.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-beta.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-alpha.7 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-alpha.6 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-alpha.5 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-alpha.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-alpha.3 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-alpha.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.10.0-alpha.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.18 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.17 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.16 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.15 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.14 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.13 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.12 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.11 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.10 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.9 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.8 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.7 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.6 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.5 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.3 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.2-rc.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.1-rc.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.0 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.0-rc.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.0-rc.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.0-beta.5 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.9.0-beta.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.18 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.17 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.16 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.15 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.14 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.13 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.12 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.11 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.10 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.9 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.8 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.7 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.6 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.5 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.3 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.8.0 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.17 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.16 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.15 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.14 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.13 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.12 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.11 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.10 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.9 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.8 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.7 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.6 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.5 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.3 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.2 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.7.1 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.6.15 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.6.14 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.6.13 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.6.12 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.6.11 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.6.10 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.6.9 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.6.8 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.6.7 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.5.10 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.5.9 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.5.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.4.10 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.4.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.3.7 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.3.5 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.2.5 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.1.4 satisfies 3.12.0\r\n[Run Tests/tests] 💬 ::debug::check 3.0.1 satisfies 3.12.0\r\n[Run Tests/tests] ❗ ::error::Version 3.12.0 with arch x64 not found%0AThe list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json\r\n[Run Tests/tests] ❌ Failure - Main Set up Python\r\n[Run Tests/tests] exitcode '1': failure\r\n[Run Tests/tests] 🏁 Job failed\r\nError: Job 'tests' failed\n```\n\n\n### Additional information\n\n_No response_","closed":false,"closedAt":null,"comments":[{"author":{"login":"gavin1818"},"authorAssociation":"NONE","body":"@WaterNewt I'm having the same issue, did you figure out the solution ? thanks","createdAt":"2024-01-17T17:51:14Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]},{"author":{"login":"ethanwater"},"authorAssociation":"NONE","body":"Hey @WaterNewt @gavin1818 , \r\n\r\nHave you guys tried to update the python version in your workflow file to something more specific like: \r\n`python-version: '3.12.0-darwin-x64'`? \r\n","createdAt":"2024-01-19T16:58:42Z","includesCreatedEdit":false,"isMinimized":false,"minimizedReason":"","reactionGroups":[]}],"createdAt":"2024-01-09T18:07:39Z","id":"I_kwDOCcSpD857je7x","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2150,"projectCards":[],"reactionGroups":[{"content":"THUMBS_UP","users":{"totalCount":1}}],"state":"OPEN","title":"github workflow error on arm64 chip.","updatedAt":"2024-01-19T16:58:43Z","url":"https://github.com/nektos/act/issues/2150"},{"assignees":[],"author":{"login":"chrismgrayftsinc"},"body":"### Bug report info\n\n```plain text\nact version: 0.2.55\r\nGOOS: linux\r\nGOARCH: amd64\r\nNumCPU: 8\r\nDocker host: DOCKER_HOST environment variable is not set\r\nSockets found:\r\n\t/var/run/docker.sock\r\nConfig files: \r\n\t/home/cmg/.actrc:\r\n\t\t-P ubuntu-latest=catthehacker/ubuntu:act-latest\r\n\t\t-P ubuntu-22.04=catthehacker/ubuntu:act-22.04\r\n\t\t-P ubuntu-20.04=catthehacker/ubuntu:act-20.04\r\n\t\t-P ubuntu-18.04=catthehacker/ubuntu:act-18.04\r\nBuild info:\r\n\tGo version: go1.20.11\r\n\tModule path: github.com/nektos/act\r\n\tMain version: (devel)\r\n\tMain path: github.com/nektos/act\r\n\tMain checksum: \r\n\tBuild settings:\r\n\t\t-buildmode: exe\r\n\t\t-compiler: gc\r\n\t\t-trimpath: true\r\n\t\tCGO_ENABLED: 0\r\n\t\tGOARCH: amd64\r\n\t\tGOOS: linux\r\n\t\tGOAMD64: v1\r\n\t\tvcs: git\r\n\t\tvcs.revision: e8856f0fb00fcdd16eef2325b845f55f5d346f51\r\n\t\tvcs.time: 2023-08-21T16:17:06Z\r\n\t\tvcs.modified: true\r\nDocker Engine:\r\n\tEngine version: 24.0.6\r\n\tEngine runtime: runc\r\n\tCgroup version: 2\r\n\tCgroup driver: systemd\r\n\tStorage driver: overlay2\r\n\tRegistry URI: https://index.docker.io/v1/\r\n\tOS: Debian GNU/Linux 11 (bullseye)\r\n\tOS type: linux\r\n\tOS version: 11\r\n\tOS arch: x86_64\r\n\tOS kernel: 5.10.0-22-amd64\r\n\tOS CPU: 8\r\n\tOS memory: 31979 MB\r\n\tSecurity options:\r\n\t\tname=apparmor\r\n\t\tname=seccomp,profile=builtin\r\n\t\tname=cgroupns\n```\n\n\n### Command used with act\n\n```sh\ngh act \"pull_request\" --secret-file .secret\n```\n\n\n### Describe issue\n\n`act` should fail on the provided workflow, since github-actions does.\r\n\r\nThe error message from github-actions is `The workflow is not valid. .github/workflows/github-actions.yml: Expected stream end parse event`\n\n### Link to GitHub repository\n\n_No response_\n\n### Workflow content\n\n```yml\n---\r\njobs:\r\n pull_request:\r\n runs-on: ubuntu-latest\r\n steps:\r\n - name: clone\r\n uses: actions/checkout@v2\r\nname: pull_request\r\n\"on\":\r\n pull_request:\r\n types:\r\n - opened\r\n - synchronize\r\n---\r\njobs:\r\n deploy-to-staging:\r\n runs-on: ubuntu-latest\r\n steps:\r\n - name: clone\r\n uses: actions/checkout@v2\r\nname: Deploy to Staging\r\n\"on\":\r\n push:\r\n branches:\r\n - release/*\r\n - hotfix/*\n```\n\n\n### Relevant log output\n\n```sh\n[pull_request/pull_request] 🚀 Start image=catthehacker/ubuntu:act-latest\r\nINFO[0000] Parallel tasks (0) below minimum, setting to 1 \r\n[pull_request/pull_request] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true\r\nINFO[0069] Parallel tasks (0) below minimum, setting to 1 \r\n[pull_request/pull_request] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[pull_request/pull_request] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=[\"tail\" \"-f\" \"/dev/null\"] cmd=[] network=\"host\"\r\n[pull_request/pull_request] ⭐ Run Main clone\r\n[pull_request/pull_request] 🐳 docker cp src=/home/cmg/IdeaProjects/cameras-service-360/. dst=/home/cmg/IdeaProjects/cameras-service-360\r\n[pull_request/pull_request] ✅ Success - Main clone\r\n[pull_request/pull_request] Cleaning up container for job pull_request\r\n[pull_request/pull_request] 🏁 Job succeeded\n```\n\n\n### Additional information\n\nWhen I split the one workflow file into two yaml files, github-actions did work as expected.","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-01-03T23:03:01Z","id":"I_kwDOCcSpD857Eb_m","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODIy","name":"kind/bug","description":"Something isn't working","color":"d73a4a"}],"milestone":null,"number":2144,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Succeeds with yaml streams while github actions fail","updatedAt":"2024-01-03T23:03:01Z","url":"https://github.com/nektos/act/issues/2144"},{"assignees":[],"author":{"login":"johnnynunez"},"body":"### Act version\n\n0.2.57\n\n### Feature description\n\nAsahi linux for mps acceleratorto create gpu test for apple silicon","closed":false,"closedAt":null,"comments":[],"createdAt":"2024-01-02T14:36:52Z","id":"I_kwDOCcSpD85672ex","labels":[{"id":"MDU6TGFiZWwxMTc4Mzk0ODI0","name":"kind/feature-request","description":"New feature or request","color":"0000ff"}],"milestone":null,"number":2143,"projectCards":[],"reactionGroups":[],"state":"OPEN","title":"Asahi linux as MPS Image?","updatedAt":"2024-01-02T14:36:52Z","url":"https://github.com/nektos/act/issues/2143"}]