[GH-ISSUE #963] Issue: ::set::output does not work in an action (but does in a workflow) #566

Closed
opened 2026-03-01 21:44:33 +03:00 by kerem · 3 comments
Owner

Originally created by @DanForever on GitHub (Jan 23, 2022).
Original GitHub issue: https://github.com/nektos/act/issues/963

System information

  • Operating System: Windows
  • Architecture: x64
  • Apple M1: no
  • Docker version: 20.10.12
  • Docker image used in act: ghcr.io/catthehacker/ubuntu:act-latest
  • act version: 0.2.25

Expected behaviour

Using a step like run: echo ::set-output name=FOO::BAR in an action should produce a value that is accessible like so: steps.<step id>.outputs.FOO

Actual behaviour

It works for a workflow/job, but not for an action. I have attached an example that should be easy enough to use to reproduce.

The workflow example-setoutput.yml and the action action-set-output/action.yml

Workflow and/or repository

example.zip

name: Example Set Output
on: [push]

jobs:
  example-set-output:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set an output value
        id: step_one
        run: echo ::set-output name=FOO::BAR
      - name: Display the output value
        run: echo The value of FOO is ${{ steps.step_one.outputs.FOO }}
      - name: Now try again but with an action
        uses: ./.github/workflows/action-set-output
name: Example Action Set Output

description: uses set-output to create a value

runs:
  using: "composite"
  steps:
    - name: Set the value
      id: step_one
      shell: bash
      run: echo ::set-output name=PIE::CAKE
    - name: Display the value
      shell: bash
      run: echo The value of PIE is ${{ steps.step_one.outputs.PIE }}

act output

Log
G:\Projects\HardwareMonitor>act -j example-set-output -v
time="2022-01-23T12:16:06+01:00" level=debug msg="Loading environment from G:\\Projects\\HardwareMonitor\\.env"
time="2022-01-23T12:16:06+01:00" level=debug msg="Loading secrets from G:\\Projects\\HardwareMonitor\\.secrets"
time="2022-01-23T12:16:06+01:00" level=debug msg="Loading workflows from 'G:\\Projects\\HardwareMonitor\\.github\\workflows'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Loading workflows recursively"
time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'action.yml' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\action-set-output\\action.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'build-companion-app.yml' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-companion-app.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'action.yml' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-device\\action.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'build-devices.yml.old' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-devices.yml.old'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'example-setoutput.yml' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\example-setoutput.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'action.yml' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\setup-environment\\action.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'verify-devices.yml' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\verify-devices.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Reading workflow 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\action-set-output\\action.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Correcting if statements 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\action-set-output\\action.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Reading workflow 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-companion-app.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Correcting if statements 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-companion-app.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Reading workflow 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-device\\action.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Correcting if statements 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-device\\action.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Reading workflow 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\example-setoutput.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Correcting if statements 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\example-setoutput.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Reading workflow 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\setup-environment\\action.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Correcting if statements 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\setup-environment\\action.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Reading workflow 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\verify-devices.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Correcting if statements 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\verify-devices.yml'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Planning job: example-set-output"
time="2022-01-23T12:16:06+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:06+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:06+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:06+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:06+01:00" level=debug msg="context env => map[ACT:true]"
time="2022-01-23T12:16:06+01:00" level=debug msg="context needs => map[]"
[Example Set Output/example-set-output] 🚀  Start image=ghcr.io/catthehacker/ubuntu:act-latest
time="2022-01-23T12:16:06+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:06+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:06+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:06+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:06+01:00" level=debug msg="using github ref: refs/heads/main"
[Example Set Output/example-set-output]   🐳  docker pull image=ghcr.io/catthehacker/ubuntu:act-latest platform= username= forcePull=false
[Example Set Output/example-set-output]   🐳  docker pull ghcr.io/catthehacker/ubuntu:act-latest
time="2022-01-23T12:16:06+01:00" level=debug msg="Image exists? true"
[Example Set Output/example-set-output]   🐳  docker create image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Example Set Output/example-set-output] Created container name=act-Example-Set-Output-example-set-output id=2aad6172fc0be834d3faeac85d69d762b008570067053af9be6cef005ff0d1fd from image ghcr.io/catthehacker/ubuntu:act-latest (platform: )
[Example Set Output/example-set-output] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[Example Set Output/example-set-output]   🐳  docker run image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Example Set Output/example-set-output] Starting container: 2aad6172fc0be834d3faeac85d69d762b008570067053af9be6cef005ff0d1fd
[Example Set Output/example-set-output] Started container: 2aad6172fc0be834d3faeac85d69d762b008570067053af9be6cef005ff0d1fd
[Example Set Output/example-set-output]   🐳  docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[Example Set Output/example-set-output] Exec command '[mkdir -m 0777 -p /var/run/act]'
[Example Set Output/example-set-output] Working directory '/mnt/g/Projects/HardwareMonitor'
[Example Set Output/example-set-output]   🐳  docker cp src=G:\Projects\HardwareMonitor\. dst=\mnt\g\Projects\HardwareMonitor
[Example Set Output/example-set-output]   🐳  docker exec cmd=[mkdir -p \mnt\g\Projects\HardwareMonitor] user= workdir=
[Example Set Output/example-set-output] Exec command '[mkdir -p /mnt/g/Projects/HardwareMonitor]'
[Example Set Output/example-set-output] Working directory '/mnt/g/Projects/HardwareMonitor'
time="2022-01-23T12:16:08+01:00" level=debug msg="Writing tarball C:\\Users\\theme\\AppData\\Local\\Temp\\act3637863133 from G:\\Projects\\HardwareMonitor\\."
time="2022-01-23T12:16:08+01:00" level=debug msg="Stripping prefix:G:\\Projects\\HardwareMonitor\\ src:G:\\Projects\\HardwareMonitor\\."
[Example Set Output/example-set-output] Extracting content from 'C:\Users\theme\AppData\Local\Temp\act3637863133' to '\mnt\g\Projects\HardwareMonitor'
time="2022-01-23T12:16:10+01:00" level=debug msg="Writing entry to tarball workflow/event.json len:2"
time="2022-01-23T12:16:10+01:00" level=debug msg="Writing entry to tarball workflow/envs.txt len:0"
time="2022-01-23T12:16:10+01:00" level=debug msg="Writing entry to tarball workflow/paths.txt len:0"
[Example Set Output/example-set-output] Extracting content to '/var/run/act/'
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
[Example Set Output/example-set-output] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Example Set Output/example-set-output] ⭐  Run Checkout
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
[Example Set Output/example-set-output] Skipping local actions/checkout because workdir was already copied
[Example Set Output/example-set-output]   ✅  Success - Checkout
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:step_one GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:step_one GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
[Example Set Output/example-set-output] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:step_one GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Example Set Output/example-set-output] ⭐  Run Set an output value
time="2022-01-23T12:16:11+01:00" level=debug msg="Wrote command '\necho ::set-output name=FOO::BAR\n' to 'workflow/step_one'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Writing entry to tarball workflow/step_one len:31"
[Example Set Output/example-set-output] Extracting content to '/mnt/g/Projects/HardwareMonitor'
[Example Set Output/example-set-output]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/step_one] user= workdir=
[Example Set Output/example-set-output] Exec command '[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/step_one]'
[Example Set Output/example-set-output] Working directory '/mnt/g/Projects/HardwareMonitor'
[Example Set Output/example-set-output]   ⚙  ::set-output:: FOO=BAR
[Example Set Output/example-set-output]   ✅  Success - Set an output value
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
[Example Set Output/example-set-output] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Example Set Output/example-set-output] ⭐  Run Display the output value
time="2022-01-23T12:16:11+01:00" level=debug msg="Evaluating 'steps['step_one']['outputs']['FOO']' instead of 'steps.step_one.outputs.FOO'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Wrote command '\necho The value of FOO is BAR\n' to 'workflow/2'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Writing entry to tarball workflow/2 len:28"
[Example Set Output/example-set-output] Extracting content to '/mnt/g/Projects/HardwareMonitor'
[Example Set Output/example-set-output]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/2] user= workdir=
[Example Set Output/example-set-output] Exec command '[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/2]'
[Example Set Output/example-set-output] Working directory '/mnt/g/Projects/HardwareMonitor'
| The value of FOO is BAR
[Example Set Output/example-set-output]   ✅  Success - Display the output value
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
[Example Set Output/example-set-output] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Example Set Output/example-set-output] ⭐  Run Now try again but with an action
time="2022-01-23T12:16:11+01:00" level=debug msg="Read action &{Example Action Set Output  uses set-output to create a value map[] map[] {composite map[]    [] [{step_one {0 0    <nil> []    0 0} Set the value  echo ::set-output name=PIE::CAKE  bash {0 0    <nil> []    0 0} map[] false 0} { {0 0    <nil> []    0 0} Display the value  echo The value of PIE is ${{ steps.step_one.outputs.PIE }}  bash {0 0    <nil> []    0 0} map[] false 0}]} { }} from 'Unknown'"
time="2022-01-23T12:16:11+01:00" level=debug msg="About to run action &{Example Action Set Output  uses set-output to create a value map[] map[] {composite map[]    [] [{step_one {0 0    <nil> []    0 0} Set the value  echo ::set-output name=PIE::CAKE  bash {0 0    <nil> []    0 0} map[] false 0} { {0 0    <nil> []    0 0} Display the value  echo The value of PIE is ${{ steps.step_one.outputs.PIE }}  bash {0 0    <nil> []    0 0} map[] false 0}]} { }}"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="type=2 actionDir=G:\\Projects\\HardwareMonitor\\.github\\workflows\\action-set-output actionPath= workdir=G:\\Projects\\HardwareMonitor actionCacheDir=C:\\Users\\theme\\.cache\\act actionName=./.github/workflows/action-set-output containerActionDir=/mnt/g/Projects/HardwareMonitor/.github/workflows/action-set-output"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/mnt/g/Projects/HardwareMonitor/.github/workflows/action-set-output 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/mnt/g/Projects/HardwareMonitor/.github/workflows/action-set-output 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/mnt/g/Projects/HardwareMonitor/.github/workflows/action-set-output 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]"
time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/mnt/g/Projects/HardwareMonitor/.github/workflows/action-set-output 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:11+01:00" level=debug msg="Evaluating 'steps['step_one']['outputs']['PIE']' instead of 'steps.step_one.outputs.PIE'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Wrote command '\necho ::set-output name=PIE::CAKE\n' to 'workflow/step_one.sh'"
time="2022-01-23T12:16:11+01:00" level=debug msg="Writing entry to tarball workflow/step_one.sh len:32"
[Example Set Output/example-set-output] Extracting content to '/mnt/g/Projects/HardwareMonitor'
[Example Set Output/example-set-output]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/step_one.sh] user= workdir=
[Example Set Output/example-set-output] Exec command '[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/step_one.sh]'
[Example Set Output/example-set-output] Working directory '/mnt/g/Projects/HardwareMonitor'
[Example Set Output/example-set-output]   ⚙  ::set-output:: PIE=CAKE
time="2022-01-23T12:16:12+01:00" level=debug msg="Wrote command '\necho The value of PIE is \n' to 'workflow/composite-0.sh'"
time="2022-01-23T12:16:12+01:00" level=debug msg="Writing entry to tarball workflow/composite-0.sh len:25"
[Example Set Output/example-set-output] Extracting content to '/mnt/g/Projects/HardwareMonitor'
[Example Set Output/example-set-output]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/composite-0.sh] user= workdir=
[Example Set Output/example-set-output] Exec command '[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/composite-0.sh]'
[Example Set Output/example-set-output] Working directory '/mnt/g/Projects/HardwareMonitor'
| The value of PIE is
[Example Set Output/example-set-output]   ✅  Success - Now try again but with an action
[Example Set Output/example-set-output] Removed container: 2aad6172fc0be834d3faeac85d69d762b008570067053af9be6cef005ff0d1fd
[Example Set Output/example-set-output]   🐳  docker volume rm act-Example-Set-Output-example-set-output
time="2022-01-23T12:16:13+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:13+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:13+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'"
time="2022-01-23T12:16:13+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n"
time="2022-01-23T12:16:13+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'"
time="2022-01-23T12:16:13+01:00" level=debug msg="using github ref: refs/heads/main"
time="2022-01-23T12:16:13+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2022-01-23T12:16:13+01:00" level=debug msg="context needs => map[]"
[example.zip](https://github.com/nektos/act/files/7920342/example.zip)
Originally created by @DanForever on GitHub (Jan 23, 2022). Original GitHub issue: https://github.com/nektos/act/issues/963 <!-- - Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases) - Search the existing issues. - Refer to [README](https://github.com/nektos/act/blob/master/README.md). --> ## System information <!-- - Operating System: < Windows | Linux | macOS | etc... > - Architecture: < x64 (64-bit) | x86 (32-bit) | arm64 (64-bit) | arm (32-bit) | etc... > - Apple M1: < yes | no > - Docker version: < output of `docker system info -f "{{.ServerVersion}}"` > - Docker image used in `act`: < can be omitted if it's included in log > - `act` version: < output of `act --version`, if you've built `act` yourself, please provide commit hash > --> - Operating System: Windows - Architecture: x64 - Apple M1: no - Docker version: 20.10.12 - Docker image used in `act`: ghcr.io/catthehacker/ubuntu:act-latest - `act` version: 0.2.25 ## Expected behaviour Using a step like `run: echo ::set-output name=FOO::BAR` in an action should produce a value that is accessible like so: `steps.<step id>.outputs.FOO` <!-- - Describe how whole process should go and finish --> ## Actual behaviour It works for a workflow/job, but not for an action. I have attached an example that should be easy enough to use to reproduce. The workflow `example-setoutput.yml` and the action `action-set-output/action.yml` <!-- - Describe the issue --> ## Workflow and/or repository [example.zip](https://github.com/nektos/act/files/7920342/example.zip) ``` name: Example Set Output on: [push] jobs: example-set-output: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Set an output value id: step_one run: echo ::set-output name=FOO::BAR - name: Display the output value run: echo The value of FOO is ${{ steps.step_one.outputs.FOO }} - name: Now try again but with an action uses: ./.github/workflows/action-set-output ``` ``` name: Example Action Set Output description: uses set-output to create a value runs: using: "composite" steps: - name: Set the value id: step_one shell: bash run: echo ::set-output name=PIE::CAKE - name: Display the value shell: bash run: echo The value of PIE is ${{ steps.step_one.outputs.PIE }} ``` ## `act` output <!-- - Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below --> <details> <summary>Log</summary> ```none G:\Projects\HardwareMonitor>act -j example-set-output -v time="2022-01-23T12:16:06+01:00" level=debug msg="Loading environment from G:\\Projects\\HardwareMonitor\\.env" time="2022-01-23T12:16:06+01:00" level=debug msg="Loading secrets from G:\\Projects\\HardwareMonitor\\.secrets" time="2022-01-23T12:16:06+01:00" level=debug msg="Loading workflows from 'G:\\Projects\\HardwareMonitor\\.github\\workflows'" time="2022-01-23T12:16:06+01:00" level=debug msg="Loading workflows recursively" time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'action.yml' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\action-set-output\\action.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'build-companion-app.yml' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-companion-app.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'action.yml' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-device\\action.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'build-devices.yml.old' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-devices.yml.old'" time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'example-setoutput.yml' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\example-setoutput.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'action.yml' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\setup-environment\\action.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Found workflow 'verify-devices.yml' in 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\verify-devices.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Reading workflow 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\action-set-output\\action.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Correcting if statements 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\action-set-output\\action.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Reading workflow 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-companion-app.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Correcting if statements 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-companion-app.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Reading workflow 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-device\\action.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Correcting if statements 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\build-device\\action.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Reading workflow 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\example-setoutput.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Correcting if statements 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\example-setoutput.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Reading workflow 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\setup-environment\\action.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Correcting if statements 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\setup-environment\\action.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Reading workflow 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\verify-devices.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Correcting if statements 'G:\\Projects\\HardwareMonitor\\.github\\workflows\\verify-devices.yml'" time="2022-01-23T12:16:06+01:00" level=debug msg="Planning job: example-set-output" time="2022-01-23T12:16:06+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:06+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:06+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:06+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:06+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:06+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:06+01:00" level=debug msg="context env => map[ACT:true]" time="2022-01-23T12:16:06+01:00" level=debug msg="context needs => map[]" [Example Set Output/example-set-output] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-latest time="2022-01-23T12:16:06+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:06+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:06+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:06+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:06+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:06+01:00" level=debug msg="using github ref: refs/heads/main" [Example Set Output/example-set-output] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-latest platform= username= forcePull=false [Example Set Output/example-set-output] 🐳 docker pull ghcr.io/catthehacker/ubuntu:act-latest time="2022-01-23T12:16:06+01:00" level=debug msg="Image exists? true" [Example Set Output/example-set-output] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[] [Example Set Output/example-set-output] Created container name=act-Example-Set-Output-example-set-output id=2aad6172fc0be834d3faeac85d69d762b008570067053af9be6cef005ff0d1fd from image ghcr.io/catthehacker/ubuntu:act-latest (platform: ) [Example Set Output/example-set-output] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp] [Example Set Output/example-set-output] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[] [Example Set Output/example-set-output] Starting container: 2aad6172fc0be834d3faeac85d69d762b008570067053af9be6cef005ff0d1fd [Example Set Output/example-set-output] Started container: 2aad6172fc0be834d3faeac85d69d762b008570067053af9be6cef005ff0d1fd [Example Set Output/example-set-output] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir= [Example Set Output/example-set-output] Exec command '[mkdir -m 0777 -p /var/run/act]' [Example Set Output/example-set-output] Working directory '/mnt/g/Projects/HardwareMonitor' [Example Set Output/example-set-output] 🐳 docker cp src=G:\Projects\HardwareMonitor\. dst=\mnt\g\Projects\HardwareMonitor [Example Set Output/example-set-output] 🐳 docker exec cmd=[mkdir -p \mnt\g\Projects\HardwareMonitor] user= workdir= [Example Set Output/example-set-output] Exec command '[mkdir -p /mnt/g/Projects/HardwareMonitor]' [Example Set Output/example-set-output] Working directory '/mnt/g/Projects/HardwareMonitor' time="2022-01-23T12:16:08+01:00" level=debug msg="Writing tarball C:\\Users\\theme\\AppData\\Local\\Temp\\act3637863133 from G:\\Projects\\HardwareMonitor\\." time="2022-01-23T12:16:08+01:00" level=debug msg="Stripping prefix:G:\\Projects\\HardwareMonitor\\ src:G:\\Projects\\HardwareMonitor\\." [Example Set Output/example-set-output] Extracting content from 'C:\Users\theme\AppData\Local\Temp\act3637863133' to '\mnt\g\Projects\HardwareMonitor' time="2022-01-23T12:16:10+01:00" level=debug msg="Writing entry to tarball workflow/event.json len:2" time="2022-01-23T12:16:10+01:00" level=debug msg="Writing entry to tarball workflow/envs.txt len:0" time="2022-01-23T12:16:10+01:00" level=debug msg="Writing entry to tarball workflow/paths.txt len:0" [Example Set Output/example-set-output] Extracting content to '/var/run/act/' time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" [Example Set Output/example-set-output] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root] [Example Set Output/example-set-output] ⭐ Run Checkout time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" [Example Set Output/example-set-output] Skipping local actions/checkout because workdir was already copied [Example Set Output/example-set-output] ✅ Success - Checkout time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:step_one GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:step_one GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" [Example Set Output/example-set-output] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:step_one GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root] [Example Set Output/example-set-output] ⭐ Run Set an output value time="2022-01-23T12:16:11+01:00" level=debug msg="Wrote command '\necho ::set-output name=FOO::BAR\n' to 'workflow/step_one'" time="2022-01-23T12:16:11+01:00" level=debug msg="Writing entry to tarball workflow/step_one len:31" [Example Set Output/example-set-output] Extracting content to '/mnt/g/Projects/HardwareMonitor' [Example Set Output/example-set-output] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/step_one] user= workdir= [Example Set Output/example-set-output] Exec command '[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/step_one]' [Example Set Output/example-set-output] Working directory '/mnt/g/Projects/HardwareMonitor' [Example Set Output/example-set-output] ⚙ ::set-output:: FOO=BAR [Example Set Output/example-set-output] ✅ Success - Set an output value time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" [Example Set Output/example-set-output] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root] [Example Set Output/example-set-output] ⭐ Run Display the output value time="2022-01-23T12:16:11+01:00" level=debug msg="Evaluating 'steps['step_one']['outputs']['FOO']' instead of 'steps.step_one.outputs.FOO'" time="2022-01-23T12:16:11+01:00" level=debug msg="Wrote command '\necho The value of FOO is BAR\n' to 'workflow/2'" time="2022-01-23T12:16:11+01:00" level=debug msg="Writing entry to tarball workflow/2 len:28" [Example Set Output/example-set-output] Extracting content to '/mnt/g/Projects/HardwareMonitor' [Example Set Output/example-set-output] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/2] user= workdir= [Example Set Output/example-set-output] Exec command '[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/2]' [Example Set Output/example-set-output] Working directory '/mnt/g/Projects/HardwareMonitor' | The value of FOO is BAR [Example Set Output/example-set-output] ✅ Success - Display the output value time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" [Example Set Output/example-set-output] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root] [Example Set Output/example-set-output] ⭐ Run Now try again but with an action time="2022-01-23T12:16:11+01:00" level=debug msg="Read action &{Example Action Set Output uses set-output to create a value map[] map[] {composite map[] [] [{step_one {0 0 <nil> [] 0 0} Set the value echo ::set-output name=PIE::CAKE bash {0 0 <nil> [] 0 0} map[] false 0} { {0 0 <nil> [] 0 0} Display the value echo The value of PIE is ${{ steps.step_one.outputs.PIE }} bash {0 0 <nil> [] 0 0} map[] false 0}]} { }} from 'Unknown'" time="2022-01-23T12:16:11+01:00" level=debug msg="About to run action &{Example Action Set Output uses set-output to create a value map[] map[] {composite map[] [] [{step_one {0 0 <nil> [] 0 0} Set the value echo ::set-output name=PIE::CAKE bash {0 0 <nil> [] 0 0} map[] false 0} { {0 0 <nil> [] 0 0} Display the value echo The value of PIE is ${{ steps.step_one.outputs.PIE }} bash {0 0 <nil> [] 0 0} map[] false 0}]} { }}" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="type=2 actionDir=G:\\Projects\\HardwareMonitor\\.github\\workflows\\action-set-output actionPath= workdir=G:\\Projects\\HardwareMonitor actionCacheDir=C:\\Users\\theme\\.cache\\act actionName=./.github/workflows/action-set-output containerActionDir=/mnt/g/Projects/HardwareMonitor/.github/workflows/action-set-output" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/mnt/g/Projects/HardwareMonitor/.github/workflows/action-set-output 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/mnt/g/Projects/HardwareMonitor/.github/workflows/action-set-output 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/mnt/g/Projects/HardwareMonitor/.github/workflows/action-set-output 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:11+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:11+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:11+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="context needs => map[]" time="2022-01-23T12:16:11+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/mnt/g/Projects/HardwareMonitor/.github/workflows/action-set-output 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:11+01:00" level=debug msg="Evaluating 'steps['step_one']['outputs']['PIE']' instead of 'steps.step_one.outputs.PIE'" time="2022-01-23T12:16:11+01:00" level=debug msg="Wrote command '\necho ::set-output name=PIE::CAKE\n' to 'workflow/step_one.sh'" time="2022-01-23T12:16:11+01:00" level=debug msg="Writing entry to tarball workflow/step_one.sh len:32" [Example Set Output/example-set-output] Extracting content to '/mnt/g/Projects/HardwareMonitor' [Example Set Output/example-set-output] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/step_one.sh] user= workdir= [Example Set Output/example-set-output] Exec command '[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/step_one.sh]' [Example Set Output/example-set-output] Working directory '/mnt/g/Projects/HardwareMonitor' [Example Set Output/example-set-output] ⚙ ::set-output:: PIE=CAKE time="2022-01-23T12:16:12+01:00" level=debug msg="Wrote command '\necho The value of PIE is \n' to 'workflow/composite-0.sh'" time="2022-01-23T12:16:12+01:00" level=debug msg="Writing entry to tarball workflow/composite-0.sh len:25" [Example Set Output/example-set-output] Extracting content to '/mnt/g/Projects/HardwareMonitor' [Example Set Output/example-set-output] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/composite-0.sh] user= workdir= [Example Set Output/example-set-output] Exec command '[bash --noprofile --norc -e -o pipefail /mnt/g/Projects/HardwareMonitor/workflow/composite-0.sh]' [Example Set Output/example-set-output] Working directory '/mnt/g/Projects/HardwareMonitor' | The value of PIE is [Example Set Output/example-set-output] ✅ Success - Now try again but with an action [Example Set Output/example-set-output] Removed container: 2aad6172fc0be834d3faeac85d69d762b008570067053af9be6cef005ff0d1fd [Example Set Output/example-set-output] 🐳 docker volume rm act-Example-Set-Output-example-set-output time="2022-01-23T12:16:13+01:00" level=debug msg="Loading slug from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:13+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:13+01:00" level=debug msg="Loading revision from git directory 'G:\\Projects\\HardwareMonitor\\.git'" time="2022-01-23T12:16:13+01:00" level=debug msg="Found revision: 3bf8f3302539b9634aad368fd6f099eeaf9b0778\n" time="2022-01-23T12:16:13+01:00" level=debug msg="HEAD points to '3bf8f3302539b9634aad368fd6f099eeaf9b0778'" time="2022-01-23T12:16:13+01:00" level=debug msg="using github ref: refs/heads/main" time="2022-01-23T12:16:13+01:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true 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:example-set-output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:DanForever/Arduino-PC-Health-Monitor GITHUB_REPOSITORY_OWNER:DanForever GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3bf8f3302539b9634aad368fd6f099eeaf9b0778 GITHUB_TOKEN: GITHUB_WORKFLOW:Example Set Output GITHUB_WORKSPACE:/mnt/g/Projects/HardwareMonitor IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]" time="2022-01-23T12:16:13+01:00" level=debug msg="context needs => map[]" ``` </details> [example.zip](https://github.com/nektos/act/files/7920342/example.zip)
kerem 2026-03-01 21:44:33 +03:00
  • closed this issue
  • added the
    kind/bug
    label
Author
Owner

@ChristopherHX commented on GitHub (Jan 23, 2022):

Already fixed in master, since github.com/nektos/act@9868e13772.

In act v0.2.25 are even more composite bugs, like composite outputs are not working correctly.

You find a build artifact including the fix here https://github.com/nektos/act/actions/runs/1729619477.

<!-- gh-comment-id:1019476917 --> @ChristopherHX commented on GitHub (Jan 23, 2022): Already fixed in master, since https://github.com/nektos/act/commit/9868e1377274a7657d4aac6bd2b66c0d564405cb. In act v0.2.25 are even more composite bugs, like composite outputs are not working correctly. You find a build artifact including the fix here https://github.com/nektos/act/actions/runs/1729619477.
Author
Owner

@DanForever commented on GitHub (Jan 23, 2022):

Oh I'm sorry, so there's a fix but there's not been a release since the fix was implemented? OK sorry to bother you guys then :)

<!-- gh-comment-id:1019493523 --> @DanForever commented on GitHub (Jan 23, 2022): Oh I'm sorry, so there's a fix but there's not been a release since the fix was implemented? OK sorry to bother you guys then :)
Author
Owner

@ChristopherHX commented on GitHub (Jan 24, 2022):

I didn't even know that this particular feature were broken in act, till I saw your issue and tested it.

there's not been a release since the fix was implemented?

Exactly, if I would be able to create a release I would do it. There are even some votes for a new release https://github.com/nektos/act/pull/793#issuecomment-1002234569 with my changes to composite actions.

<!-- gh-comment-id:1020498480 --> @ChristopherHX commented on GitHub (Jan 24, 2022): I didn't even know that this particular feature were broken in act, till I saw your issue and tested it. > there's not been a release since the fix was implemented? Exactly, if I would be able to create a release I would do it. There are even some votes for a new release https://github.com/nektos/act/pull/793#issuecomment-1002234569 with my changes to composite actions.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/act#566
No description provided.