Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Issue: ::set::output does not work in an action (but does in a workflow) #963

Closed
DanForever opened this issue Jan 23, 2022 · 3 comments
Closed
Labels
kind/bug Something isn't working

Comments

@DanForever
Copy link

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)
@DanForever DanForever added the kind/bug Something isn't working label Jan 23, 2022
@ChristopherHX
Copy link
Contributor

Already fixed in master, since 9868e13.

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.

@DanForever
Copy link
Author

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 :)

@ChristopherHX
Copy link
Contributor

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 #793 (comment) with my changes to composite actions.

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

No branches or pull requests

2 participants