Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

$GITHUB_STEP_SUMMARY is unusable for any nontrivial workflow #2273

Open
jsoref opened this issue Apr 4, 2024 · 2 comments
Open

$GITHUB_STEP_SUMMARY is unusable for any nontrivial workflow #2273

jsoref opened this issue Apr 4, 2024 · 2 comments
Labels
kind/bug Something isn't working

Comments

@jsoref
Copy link
Contributor

jsoref commented Apr 4, 2024

Bug report info

act version:            0.2.61
GOOS:                   darwin
GOARCH:                 arm64
NumCPU:                 10
Docker host:            DOCKER_HOST environment variable is not set
Sockets found:
	/var/run/docker.sock
Config files:           
	/Users/jsoref/.actrc:
		#-P ubuntu-latest=node:12.20.1-buster-slim
		#-P ubuntu-20.04=node:12.20.1-buster-slim
		#-P ubuntu-18.04=node:12.20.1-buster-slim
		-P ubuntu-latest=catthehacker/ubuntu:act-latest
		-P ubuntu-22.04=catthehacker/ubuntu:act-22.04
		-P ubuntu-20.04=catthehacker/ubuntu:act-20.04
		-P ubuntu-18.04=catthehacker/ubuntu:act-18.04
		-P ubuntu-16.04=catthehacker/ubuntu:act-16.04
		-P self-hosted=catthehacker/ubuntu:act-latest
		-P ubuntu-latest-4cpu=ubuntu:act-latest
		-P ubuntu-latest-8cpu=ubuntu:act-latest
Build info:
	Go version:            go1.22.1
	Module path:           command-line-arguments
	Main version:          
	Main path:             
	Main checksum:         
	Build settings:
		-buildmode:           exe
		-compiler:            gc
		-ldflags:             -X main.version=0.2.61
		DefaultGODEBUG:       httplaxcontentlength=1,httpmuxgo121=1,panicnil=1,tls10server=1,tlsrsakex=1,tlsunsafeekm=1
		CGO_ENABLED:          1
		CGO_CFLAGS:           
		CGO_CPPFLAGS:         
		CGO_CXXFLAGS:         
		CGO_LDFLAGS:          
		GOARCH:               arm64
		GOOS:                 darwin
Docker Engine:
	Engine version:        24.0.7
	Engine runtime:        runc
	Cgroup version:        2
	Cgroup driver:         cgroupfs
	Storage driver:        overlay2
	Registry URI:          https://index.docker.io/v1/
	OS:                    Alpine Linux v3.19
	OS type:               linux
	OS version:            3.19.1
	OS arch:               aarch64
	OS kernel:             6.6.14-0-virt
	OS CPU:                2
	OS memory:             1908 MB
	Security options:
		name=seccomp,profile=builtin
		name=cgroupns

Command used with act

act

Describe issue

While it's true that https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#adding-a-job-summary says:

GITHUB_STEP_SUMMARY is unique for each step in a job.

It doesn't mean "any content dumped into $GITHUB_STEP_SUMMARY other than the last step will be inaccessible at job completion."

What GitHub does is move the contents from $GITHUB_STEP_SUMMARY to a new location which it then collates (each step's output is appended to the end of the collected output) at the end of each step.

I expect act to do something similar:

  1. at the end of each step, copy the contents from the $GITHUB_STEP_SUMMARY file somewhere (and provide a new file for the next step -- this part is done).
  2. at the end of each job, collate all output from each copied $GITHUB_STEP_SUMMARY file and make that available
  3. my preference is for that "available" to be on the act client computer as opposed to the docker container. It would be sufficient for the output from act to say Job Summary written to: <path to local file.md>

Link to GitHub repository

https://github.com/check-spelling-sandbox/nektos-issue-step-summary-outputs-1/

Workflow content

name: test

# Controls when the workflow will run
on:
  push:
  workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  first:
    runs-on: ubuntu-latest

    # Steps represent a sequence of tasks that will be executed as part of the job
    steps:
      - name: step0
        run: |
          debug_dir=$(mktemp -d)
          debug_script="$debug_dir/debug-summary"
          cat <<"EOF" > $debug_script
          #!/bin/sh
          ls -hal $GITHUB_STEP_SUMMARY
          cat $GITHUB_STEP_SUMMARY
          EOF
          chmod +x $debug_script
          echo $debug_dir >> $GITHUB_PATH
      - name: step1
        run: |
          echo "output1=from-step1" >> $GITHUB_STEP_SUMMARY
          debug-summary

      - name: step2 shim-action
        run: |
            cat <<"EOF" > action.yml
            name: test
            outputs:
              empty-action-output:
                description: empty
                value: ''
            
            runs:
              using: composite
              steps:
              - name: composite step1
                shell: bash
                run: |
                  echo "output2=from-composite-step1" >> $GITHUB_STEP_SUMMARY
                  debug-summary
              - name: composite step2
                shell: bash
                run: |
                  echo "output3=from-composite-step2" >> $GITHUB_STEP_SUMMARY
                  debug-summary
            EOF

      - name: step3 call-action
        uses: ./
        id: step3

      - name: step4
        env:
          outputs: ${{ toJSON(steps.step3.outputs) }}
        run: |
          echo "$outputs" >> $GITHUB_STEP_SUMMARY
          debug-summary

Relevant log output

DEBU[0000] Handling container host and socket
DEBU[0000] Defaulting container socket to DOCKER_HOST
INFO[0000] Using docker host 'unix:///var/run/docker.sock', and daemon socket 'unix:///var/run/docker.sock'
WARN  ⚠ 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'. ⚠
DEBU[0000] Loading environment from /var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG/.env
DEBU[0000] Loading action inputs from /var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG/.input
DEBU[0000] Loading secrets from /var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG/.secrets
DEBU[0000] Loading vars from /var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG/.vars
DEBU[0000] Evaluated matrix inclusions: map[]
DEBU[0000] Loading workflows from '/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'test.yml' in '/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG/.github/workflows/test.yml'
DEBU[0000] Reading workflow '/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG/.github/workflows/test.yml'
DEBU[0000] Conditional GET for notices etag=7022a5a5-6ee4-4b93-b36f-c06eb9dc1620
DEBU[0000] Preparing plan with all jobs
DEBU[0000] Using default workflow event: push
DEBU[0000] Planning jobs for event: push
DEBU[0000] gc: 2024-04-04 17:39:08.74942 -0400 EDT m=+0.030528793  module=artifactcache
DEBU[0000] Plan Stages: [0x1400018e9c0]
DEBU[0000] Stages Runs: [first]
DEBU[0000] Job.Name: first
DEBU[0000] Job.RawNeeds: {0 0    <nil> []    0 0}
DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    11 14}
DEBU[0000] Job.Env: {0 0    <nil> []    0 0}
DEBU[0000] Job.If: {0 0  success()  <nil> []    0 0}
DEBU[0000] Job.Steps: step0
DEBU[0000] Job.Steps: step1
DEBU[0000] Job.Steps: step2 shim-action
DEBU[0000] Job.Steps: step3 call-action
DEBU[0000] Job.Steps: step4
DEBU[0000] Job.TimeoutMinutes:
DEBU[0000] Job.Services: map[]
DEBU[0000] Job.Strategy: <nil>
DEBU[0000] Job.RawContainer: {0 0    <nil> []    0 0}
DEBU[0000] Job.Defaults.Run.Shell:
DEBU[0000] Job.Defaults.Run.WorkingDirectory:
DEBU[0000] Job.Outputs: map[]
DEBU[0000] Job.Uses:
DEBU[0000] Job.With: map[]
DEBU[0000] Job.Result:
DEBU[0000] Empty Strategy, matrixes=[map[]]
DEBU[0000] Job Matrices: [map[]]
DEBU[0000] Runner Matrices: map[]
DEBU[0000] Final matrix after applying user inclusions '[map[]]'
DEBU[0000] Loading revision from git directory
DEBU[0000] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
DEBU[0000] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
DEBU[0000] Detected CPUs: 10
[test/first] [DEBUG] evaluating expression 'success()'
[test/first] [DEBUG] expression 'success()' evaluated to 'true'
[test/first] 🚀  Start image=catthehacker/ubuntu:act-latest
DEBU[0000] Parallel tasks (0) below minimum, setting to 1
[test/first]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[test/first] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[test/first] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
DEBU[0000] Saving notices etag=7022a5a5-6ee4-4b93-b36f-c06eb9dc1620
DEBU[0000] No new notices
[test/first] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[test/first] [DEBUG] Digest: sha256:efe7d859ca6f98a21b3b0471ab48455af597a064d719f65332d0f105aadcad65 ::
[test/first] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest ::
DEBU[0008] Parallel tasks (0) below minimum, setting to 1
[test/first]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[test/first] [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:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
[test/first] [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-test-first-9c3f1aa4ca4038bee5af7414e7861197fe10a7ac9d8d4ce932d1ccd96bf80d65-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-test-first-9c3f1aa4ca4038bee5af7414e7861197fe10a7ac9d8d4ce932d1ccd96bf80d65 Target:/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
[test/first] [DEBUG] input.NetworkAliases ==> [first]
[test/first] [DEBUG] Created container name=act-test-first-9c3f1aa4ca4038bee5af7414e7861197fe10a7ac9d8d4ce932d1ccd96bf80d65 id=c99a97b44821846a1bcd761563a5e74acc939efb15cdb8a7f9458354de5633b3 from image catthehacker/ubuntu:act-latest (platform: )
[test/first] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=ARM64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
[test/first]   🐳  docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[test/first] [DEBUG] Starting container: c99a97b44821846a1bcd761563a5e74acc939efb15cdb8a7f9458354de5633b3
[test/first] [DEBUG] Started container: c99a97b44821846a1bcd761563a5e74acc939efb15cdb8a7f9458354de5633b3
[test/first] [DEBUG] Writing entry to tarball workflow/event.json len:2
[test/first] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[test/first] [DEBUG] Extracting content to '/var/run/act/'
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.131:49457/ 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:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:first GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:check-spelling-sandbox/nektos-issue-step-summary-outputs-1 GITHUB_REPOSITORY_OWNER:check-spelling-sandbox GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:00d1e150d8739efa05ee8831713e936669b925d7 GITHUB_WORKFLOW:test GITHUB_WORKSPACE:/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] evaluating expression ''
[test/first] [DEBUG] expression '' evaluated to 'true'
[test/first] ⭐ Run Main step0
[test/first] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Wrote command

debug_dir=$(mktemp -d)
debug_script="$debug_dir/debug-summary"
cat <<"EOF" > $debug_script
#!/bin/sh
ls -hal $GITHUB_STEP_SUMMARY
cat $GITHUB_STEP_SUMMARY
EOF
chmod +x $debug_script
echo $debug_dir >> $GITHUB_PATH


 to 'workflow/0'
[test/first] [DEBUG] Writing entry to tarball workflow/0 len:216
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[test/first] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0]'
[test/first] [DEBUG] Working directory '/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG'
[test/first]   ✅  Success - Main step0
[test/first]   ⚙  ::add-path:: /tmp/tmp.pL1zZVWwEx
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.131:49457/ CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:first GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:check-spelling-sandbox/nektos-issue-step-summary-outputs-1 GITHUB_REPOSITORY_OWNER:check-spelling-sandbox GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:00d1e150d8739efa05ee8831713e936669b925d7 GITHUB_WORKFLOW:test GITHUB_WORKSPACE:/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] evaluating expression ''
[test/first] [DEBUG] expression '' evaluated to 'true'
[test/first] ⭐ Run Main step1
[test/first] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Wrote command

echo "output1=from-step1" >> $GITHUB_STEP_SUMMARY
debug-summary


 to 'workflow/1'
[test/first] [DEBUG] Writing entry to tarball workflow/1 len:66
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1] user= workdir=
[test/first] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1]'
[test/first] [DEBUG] Working directory '/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG'
| -rw-rw-rw- 1 root root 19 Apr  4 21:39 /var/run/act/workflow/SUMMARY.md
| output1=from-step1
[test/first]   ✅  Success - Main step1
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.131:49457/ CI:true GITHUB_ACTION:2 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:first GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:check-spelling-sandbox/nektos-issue-step-summary-outputs-1 GITHUB_REPOSITORY_OWNER:check-spelling-sandbox GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:00d1e150d8739efa05ee8831713e936669b925d7 GITHUB_WORKFLOW:test GITHUB_WORKSPACE:/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] evaluating expression ''
[test/first] [DEBUG] expression '' evaluated to 'true'
[test/first] ⭐ Run Main step2 shim-action
[test/first] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Wrote command

cat <<"EOF" > action.yml
name: test
outputs:
  empty-action-output:
    description: empty
    value: ''

runs:
  using: composite
  steps:
  - name: composite step1
    shell: bash
    run: |
      echo "output2=from-composite-step1" >> $GITHUB_STEP_SUMMARY
      debug-summary
  - name: composite step2
    shell: bash
    run: |
      echo "output3=from-composite-step2" >> $GITHUB_STEP_SUMMARY
      debug-summary
EOF


 to 'workflow/2'
[test/first] [DEBUG] Writing entry to tarball workflow/2 len:424
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/2] user= workdir=
[test/first] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/2]'
[test/first] [DEBUG] Working directory '/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG'
[test/first]   ✅  Success - Main step2 shim-action
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.131:49457/ CI:true GITHUB_ACTION:step3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:first GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:check-spelling-sandbox/nektos-issue-step-summary-outputs-1 GITHUB_REPOSITORY_OWNER:check-spelling-sandbox GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:00d1e150d8739efa05ee8831713e936669b925d7 GITHUB_WORKFLOW:test GITHUB_WORKSPACE:/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] evaluating expression ''
[test/first] [DEBUG] expression '' evaluated to 'true'
[test/first] ⭐ Run Main step3 call-action
[test/first] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first] [DEBUG] Read action &{test   map[] map[empty-action-output:{empty }] {composite map[]   always()  always()   [] [{ {0 0    <nil> []    0 0} composite step1  echo "output2=from-composite-step1" >> $GITHUB_STEP_SUMMARY
debug-summary
  bash {0 0    <nil> []    0 0} map[]  } { {0 0    <nil> []    0 0} composite step2  echo "output3=from-composite-step2" >> $GITHUB_STEP_SUMMARY
debug-summary
  bash {0 0    <nil> []    0 0} map[]  }]} { }} from 'Unknown'
[test/first] [DEBUG] About to run action &{test   map[] map[empty-action-output:{empty }] {composite map[]   always()  always()   [] [{ {0 0    <nil> []    0 0} composite step1  echo "output2=from-composite-step1" >> $GITHUB_STEP_SUMMARY
debug-summary
  bash {0 0    <nil> []    0 0} map[]  } { {0 0    <nil> []    0 0} composite step2  echo "output3=from-composite-step2" >> $GITHUB_STEP_SUMMARY
debug-summary
  bash {0 0    <nil> []    0 0} map[]  }]} { }}
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] type=local-action actionDir=/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG actionPath= workdir=/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG actionCacheDir=/Users/jsoref/.cache/act actionName=./ containerActionDir=/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG/
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.131:49457/ CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG/ GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: 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:first GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:check-spelling-sandbox/nektos-issue-step-summary-outputs-1 GITHUB_REPOSITORY_OWNER:check-spelling-sandbox GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:00d1e150d8739efa05ee8831713e936669b925d7 GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_WORKFLOW:test GITHUB_WORKSPACE:/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] evaluating expression ''
[test/first] [DEBUG] expression '' evaluated to 'true'
[test/first] ⭐ Run Main composite step1
[test/first] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Wrote command

echo "output2=from-composite-step1" >> $GITHUB_STEP_SUMMARY
debug-summary


 to 'workflow/step3-composite-0.sh'
[test/first] [DEBUG] Writing entry to tarball workflow/step3-composite-0.sh len:76
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/step3-composite-0.sh] user= workdir=
[test/first] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/step3-composite-0.sh]'
[test/first] [DEBUG] Working directory '/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG'
| -rw-rw-rw- 1 root root 29 Apr  4 21:39 /var/run/act/workflow/SUMMARY.md
| output2=from-composite-step1
[test/first]   ✅  Success - Main composite step1
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.131:49457/ CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG/ GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: 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:first GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:check-spelling-sandbox/nektos-issue-step-summary-outputs-1 GITHUB_REPOSITORY_OWNER:check-spelling-sandbox GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:00d1e150d8739efa05ee8831713e936669b925d7 GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_WORKFLOW:test GITHUB_WORKSPACE:/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] evaluating expression ''
[test/first] [DEBUG] expression '' evaluated to 'true'
[test/first] ⭐ Run Main composite step2
[test/first] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Wrote command

echo "output3=from-composite-step2" >> $GITHUB_STEP_SUMMARY
debug-summary


 to 'workflow/step3-composite-1.sh'
[test/first] [DEBUG] Writing entry to tarball workflow/step3-composite-1.sh len:76
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/step3-composite-1.sh] user= workdir=
[test/first] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/step3-composite-1.sh]'
[test/first] [DEBUG] Working directory '/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG'
| -rw-rw-rw- 1 root root 29 Apr  4 21:39 /var/run/act/workflow/SUMMARY.md
| output3=from-composite-step2
[test/first]   ✅  Success - Main composite step2
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first]   ⚙  ::set-output:: empty-action-output=
[test/first]   ✅  Success - Main step3 call-action
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] expression '${{ toJSON(steps.step3.outputs) }}' rewritten to 'format('{0}', toJSON(steps.step3.outputs))'
[test/first] [DEBUG] evaluating expression 'format('{0}', toJSON(steps.step3.outputs))'
[test/first] [DEBUG] expression 'format('{0}', toJSON(steps.step3.outputs))' evaluated to '%!t(string={
  "empty-action-output": ""
})'
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.131:49457/ CI:true GITHUB_ACTION:4 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:first GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:check-spelling-sandbox/nektos-issue-step-summary-outputs-1 GITHUB_REPOSITORY_OWNER:check-spelling-sandbox GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:00d1e150d8739efa05ee8831713e936669b925d7 GITHUB_WORKFLOW:test GITHUB_WORKSPACE:/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: outputs:{
  "empty-action-output": ""
}]
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] evaluating expression ''
[test/first] [DEBUG] expression '' evaluated to 'true'
[test/first] ⭐ Run Main step4
[test/first] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Wrote command

echo "$outputs" >> $GITHUB_STEP_SUMMARY
debug-summary


 to 'workflow/4'
[test/first] [DEBUG] Writing entry to tarball workflow/4 len:56
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/4] user= workdir=
[test/first] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/4]'
[test/first] [DEBUG] Working directory '/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG'
| -rw-rw-rw- 1 root root 32 Apr  4 21:39 /var/run/act/workflow/SUMMARY.md
| {
|   "empty-action-output": ""
| }
[test/first]   ✅  Success - Main step4
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.131:49457/ CI:true GITHUB_ACTION:step3 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_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:first GITHUB_OUTPUT:/var/run/act/workflow/outputcmd.txt GITHUB_PATH:/var/run/act/workflow/pathcmd.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:check-spelling-sandbox/nektos-issue-step-summary-outputs-1 GITHUB_REPOSITORY_OWNER:check-spelling-sandbox GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:00d1e150d8739efa05ee8831713e936669b925d7 GITHUB_STATE:/var/run/act/workflow/statecmd.txt GITHUB_STEP_SUMMARY:/var/run/act/workflow/SUMMARY.md GITHUB_WORKFLOW:test GITHUB_WORKSPACE:/var/folders/r3/n29fz25x72x191fdv6mhhr3m0000gp/T/tmp.COoXzhqpWG ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] evaluating expression 'always()'
[test/first] [DEBUG] expression 'always()' evaluated to 'true'
[test/first] ⭐ Run Post step3 call-action
[test/first] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[test/first] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[test/first] [DEBUG] Extracting content to '/var/run/act'
[test/first] [DEBUG] run post step for 'step3 call-action'
[test/first]   ✅  Success - Post step3 call-action
[test/first] Cleaning up container for job first
[test/first] [DEBUG] Removed container: c99a97b44821846a1bcd761563a5e74acc939efb15cdb8a7f9458354de5633b3
[test/first] [DEBUG]   🐳  docker volume rm act-test-first-9c3f1aa4ca4038bee5af7414e7861197fe10a7ac9d8d4ce932d1ccd96bf80d65
[test/first] [DEBUG]   🐳  docker volume rm act-test-first-9c3f1aa4ca4038bee5af7414e7861197fe10a7ac9d8d4ce932d1ccd96bf80d65-env
[test/first] 🏁  Job succeeded
[test/first] [DEBUG] Loading revision from git directory
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7
[test/first] [DEBUG] HEAD points to '00d1e150d8739efa05ee8831713e936669b925d7'
[test/first] [DEBUG] using github ref: refs/heads/main
[test/first] [DEBUG] Found revision: 00d1e150d8739efa05ee8831713e936669b925d7

Additional information

No response

@ChristopherHX
Copy link
Contributor

My downstream act-based project explains it like

Step Summaries are not implemented (only file command is provided)

I believe to have asked a while ago in another issue how act should provide the step summary...

My downstream act-based project could sent them to GitHub Actions

Introduce Cli --step-summary-output?

  • api config to specify a callback with access to the file command content
  • value - stdout
  • value <file> all summaries concatinated, but what about multiple jobs...

Not an active developer for stuff only usefull for act cli

act has no webui like my slower alternative to it, so no fancy way to render them

Writing them somewhere into the act container that is destroyed on success by default doesn't make sense to me

@jsoref
Copy link
Contributor Author

jsoref commented Apr 7, 2024

I'd prefer to be able to specify a directory for step summaries.

--step-summary-directory <...>

Each file being named for a job.

If it isn't specified, I'd prefer for act to generate a directory using the equivalent of mktemp -d and dump the files there (and report the directory that contains the step summaries at the end of the act run).

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

No branches or pull requests

2 participants