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

Composite: Step Outputs are not available when in nested composite actions #2009

Open
antdking opened this issue Jul 20, 2022 · 14 comments · May be fixed by #2710
Open

Composite: Step Outputs are not available when in nested composite actions #2009

antdking opened this issue Jul 20, 2022 · 14 comments · May be fixed by #2710
Labels
bug Something isn't working good-first-issue Runner Bug Bug fix scope to the runner

Comments

@antdking
Copy link

antdking commented Jul 20, 2022

Describe the bug
When a workflow uses a composite action, the post steps of actions within the Composite have their inputs evaluated with the Steps context.

However when the same Composite Action is nested in another Composite Action, the Steps context is lost for the Post steps.

Our usecase for wanting this is to cache dependencies effectively without polluting our Workflows.

To Reproduce
workflow uses a composite that uses a composite.

Reproduced here: https://github.com/antdking/composite-post-step-outputs-demo, specifically this workflow
This run includes debug output: https://github.com/antdking/composite-post-step-outputs-demo/actions/runs/2710027823

Expected behavior
Able to use Post steps for Composite Actions that are used by other Composite Actions.

Runner Version and Platform

Hosted runner, affects all Platforms

What's not working?

Please include error messages and screenshots.

When executing the Post Run for the wrapping composite:

 ##[debug]Evaluating condition for step: 'Post wrapperComposite'
##[debug]Evaluating: always()
##[debug]Evaluating always:
##[debug]=> true
##[debug]Result: true
##[debug]Starting: Post wrapperComposite
##[debug]Loading inputs
##[debug]Loading env
Post job cleanup.
##[debug]Evaluating condition for step: 'run'
##[debug]Evaluating: always()
##[debug]Evaluating always:
##[debug]=> true
##[debug]Result: true
##[debug]Starting: run
##[debug]Loading inputs
##[debug]Evaluating: steps.setter.outputs.some-val
##[debug]Evaluating Index:
##[debug]..Evaluating Index:
##[debug]....Evaluating Index:
##[debug]......Evaluating steps:
##[debug]......=> Object
##[debug]......Evaluating String:
##[debug]......=> 'setter'
##[debug]....=> null
##[debug]..=> null
##[debug]=> null
##[debug]Result: null
##[debug]Loading env
Post job cleanup.
value received: 
Error: value: '' is not 'foo'
##[debug]Node Action run completed with exit code 1
##[debug]Finished: run
##[debug]Finishing: Post wrapperComposite

the setter Step seems to be missing when evaluating the post steps.

Runner and Worker's Diagnostic Logs

n/a

@Sytten
Copy link

Sytten commented Jul 26, 2022

I am also experiencing a similar issue.
Even most of the inputs are not available in the context of post hook for nested composite actions, not just step outputs.

See https://github.community/t/inputs-passed-to-action-are-blank-in-post-script/262930
Minimal repro: https://github.com/mxxk/gh-actions-issue-post-inputs-missing

@ChristopherHX
Copy link
Contributor

This issue is only affecting composite actions called like uses: ./path/to/action, in this case the runner squashes all post steps into the outer composite action. The call flow of composite actions is hard to follow.

Caused by the ExecutionContext.Id parameter, Action.Id seems to provide better choice

var prepareResult = await actionManager.PrepareActionsAsync(ExecutionContext, compositeHandlerData.Steps, ExecutionContext.Id);

You can avoid this bug by referenceing it remotely like uses: <myorg>/<myrepo></path/to/action>@<branch/tag/sha>

Does github actions have enough integration / end to end Tests? At least they are not publicy available

@antdking
Copy link
Author

antdking commented Jul 29, 2022

You can avoid this bug by referenceing it remotely like uses: <myorg>/<myrepo></path/to/action>@<branch/tag/sha>

Does github actions have enough integration / end to end Tests? At least they are not publicy available

The proposed workaround won't work, as there isn't a way to pass the current git ref as a parameter (no interpolation in uses).


edit: clarified that I'm referring to the uses workaround, and not the proposed code fix. Sorry!

@Sytten
Copy link

Sytten commented Sep 5, 2022

No progress on this? It is kind of an important bug...

fhammerl added a commit that referenced this issue Oct 5, 2022
* Escaping key and quoting it to avoid key based command injection (#2062)

* escaping key and quoting it to avoid key based command injection

* extracted creation of flags to DockerUtil, with testing included

* Release notes for 2.296.0 (#2078)

* Update releaseNote.md

* Update runnerversion

* Validate lines and columns for Annotations (#2082)

* docker: escape key-value pair as -e KEY and VALUE being environment var (#2091)

* docker: escape key-value pair as -e KEY and VALUE being environment var

* removed code duplication, removed unused method and test

* 2.296.1 Release (#2092) (#2099)

* docker: escape key-value pair as -e KEY and VALUE being environment var

* removed code duplication, removed unused method and test

* add release notes

Co-authored-by: Nikola Jokic <nikola-jokic@github.com>

Co-authored-by: Thomas Boop <52323235+thboop@users.noreply.github.com>
Co-authored-by: Nikola Jokic <nikola-jokic@github.com>

* fix ACTIONS_RUNNER_CONTAINER_HOOKS name in ADR (#2098)

* Port hotfix to main branch (#2108)

* fix issue with env's overwriting environment

* add release notes

* handle value escaping

* compile regex for runtime perf improvements

* fix for issue #2009 - composite summary file (#2077)

* Bump @actions/core from 1.2.6 to 1.9.1 in /src/Misc/expressionFunc/hashFiles (#2123)

* Remove unused imports (#2124)

* Remove unused imports (#2126)

* Add Release branches to pull request spec (#2134)

* Add file commands for save-state and set-output (#2118)

* POC: Windows arm64 runner build (#2022)

Prerelease for windows-arm64 runner build

* Add link to blog post to node 12 warn (#2156)

* 2.297.0 release notes (#2155)

* 2.297.0 release notes

* Adding a new vars context for non-secret variables (#2096)

* Adding a new vars context for non-secret variables

* Fix test case

* Trigger checks

* Remove variables from env context and environment varibale

* remove extra references

* Add prefix handling to configuration variables

* Fix test cases

* Consume variables using vars in context data

* removed action_yaml changes

* Avastancu/joannaakl/service container error log (#2110)

* adding support for a service container docker logs

* Adding Unit test to ContainerOperationProvider

* Adding another test to ContainerOperationProvider

* placed the docker logs output in dedicated ##group section

* Removed the exception thrown if the service container was not healthy

* Removed duplicated logging to the executionContext

* Updated the container logs sub-section message

* Print service containers only if they were healthy
Unhealthy service logs are printed in ContainerHealthCheckLogs called prior to this step.

* Removed recently added method to inspect docker logs
The method was doing the same thing as the existing DockerLogs method.

* Added execution context error
This will make a failed health check more visible in the UI without disrupting the execution of the program.

* Removing the section 'Waiting for all services to be ready'

Since nested subsections are not being displayed properly and we already need one subsection per service error.

* Update src/Runner.Worker/Container/DockerCommandManager.cs

Co-authored-by: Tingluo Huang <tingluohuang@github.com>

* Update src/Test/L0/TestHostContext.cs

Co-authored-by: Tingluo Huang <tingluohuang@github.com>

* Change the logic for printing Service Containers logs

Service container logs will be printed in the 'Start containers' section only if there is an error.
Healthy services will have their logs printed in the 'Stop Containers' section.

* Removed unused import

* Added back section group.

* Moved service containers error logs to separate group sections

* Removed the test testing the old logic flow.

* Remove unnecessary 'IsAnyUnhealthy' flag

* Remove printHello() function

* Add newline to TestHostContext

* Remove unnecessary field 'UnhealthyContainers'

* Rename boolean flag indicating service container failure

* Refactor healthcheck logic to separate method to enable unit testing.

* Remove the default value for bool variable

* Update src/Runner.Worker/ContainerOperationProvider.cs

Co-authored-by: Tingluo Huang <tingluohuang@github.com>

* Update src/Runner.Worker/ContainerOperationProvider.cs

Co-authored-by: Tingluo Huang <tingluohuang@github.com>

* Rename Healthcheck back to ContainerHealthcheck

* Make test sequential

* Unextract the container error logs method

* remove test asserting thrown exception

* Add configure await

* Update src/Test/L0/Worker/ContainerOperationProviderL0.cs

Co-authored-by: Tingluo Huang <tingluohuang@github.com>

* Update src/Test/L0/Worker/ContainerOperationProviderL0.cs

Co-authored-by: Tingluo Huang <tingluohuang@github.com>

* Update src/Test/L0/Worker/ContainerOperationProviderL0.cs

Co-authored-by: Tingluo Huang <tingluohuang@github.com>

* Update src/Test/L0/Worker/ContainerOperationProviderL0.cs

Co-authored-by: Tingluo Huang <tingluohuang@github.com>

* Update src/Test/L0/Worker/ContainerOperationProviderL0.cs

Co-authored-by: Tingluo Huang <tingluohuang@github.com>

* Add back test asserting exception

* Check service exit code if there is no healtcheck configured

* Remove unnecessary healthcheck for healthy service container

* Revert "Check service exit code if there is no healtcheck configured"

This reverts commit fec24e8.

Co-authored-by: Ava S <avastancu@github.com>
Co-authored-by: Tingluo Huang <tingluohuang@github.com>

* Add warning for users using deprecated commands (#2164)

* Prepare release notes for v2.298.0 (#2169)

* Fix incorrect template vars to show SHA for WIN-ARM64 (#2171)

* Backport 2.298.1 (#2175)

* Update releaseNote.md

* Update runnerversion

Co-authored-by: Nikola Jokic <97525037+nikola-jokic@users.noreply.github.com>
Co-authored-by: Ava Stancu <avastancu@github.com>
Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
Co-authored-by: Thomas Boop <52323235+thboop@users.noreply.github.com>
Co-authored-by: Nikola Jokic <nikola-jokic@github.com>
Co-authored-by: Stefan Ruvceski <96768603+ruvceskistefan@users.noreply.github.com>
Co-authored-by: Francesco Renzi <rentziass@github.com>
Co-authored-by: JoannaaKL <joannaakl@github.com>
Co-authored-by: Tatyana Kostromskaya <32135588+takost@users.noreply.github.com>
Co-authored-by: Tauhid Anjum <tauhidanjum@gmail.com>
Co-authored-by: Tingluo Huang <tingluohuang@github.com>
fhammerl added a commit that referenced this issue Oct 7, 2022
commit f8b95ee
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Wed Oct 5 12:16:30 2022 +0200

    Pull upstream (#2178)

    * Escaping key and quoting it to avoid key based command injection (#2062)

    * escaping key and quoting it to avoid key based command injection

    * extracted creation of flags to DockerUtil, with testing included

    * Release notes for 2.296.0 (#2078)

    * Update releaseNote.md

    * Update runnerversion

    * Validate lines and columns for Annotations (#2082)

    * docker: escape key-value pair as -e KEY and VALUE being environment var (#2091)

    * docker: escape key-value pair as -e KEY and VALUE being environment var

    * removed code duplication, removed unused method and test

    * 2.296.1 Release (#2092) (#2099)

    * docker: escape key-value pair as -e KEY and VALUE being environment var

    * removed code duplication, removed unused method and test

    * add release notes

    Co-authored-by: Nikola Jokic <nikola-jokic@github.com>

    Co-authored-by: Thomas Boop <52323235+thboop@users.noreply.github.com>
    Co-authored-by: Nikola Jokic <nikola-jokic@github.com>

    * fix ACTIONS_RUNNER_CONTAINER_HOOKS name in ADR (#2098)

    * Port hotfix to main branch (#2108)

    * fix issue with env's overwriting environment

    * add release notes

    * handle value escaping

    * compile regex for runtime perf improvements

    * fix for issue #2009 - composite summary file (#2077)

    * Bump @actions/core from 1.2.6 to 1.9.1 in /src/Misc/expressionFunc/hashFiles (#2123)

    * Remove unused imports (#2124)

    * Remove unused imports (#2126)

    * Add Release branches to pull request spec (#2134)

    * Add file commands for save-state and set-output (#2118)

    * POC: Windows arm64 runner build (#2022)

    Prerelease for windows-arm64 runner build

    * Add link to blog post to node 12 warn (#2156)

    * 2.297.0 release notes (#2155)

    * 2.297.0 release notes

    * Adding a new vars context for non-secret variables (#2096)

    * Adding a new vars context for non-secret variables

    * Fix test case

    * Trigger checks

    * Remove variables from env context and environment varibale

    * remove extra references

    * Add prefix handling to configuration variables

    * Fix test cases

    * Consume variables using vars in context data

    * removed action_yaml changes

    * Avastancu/joannaakl/service container error log (#2110)

    * adding support for a service container docker logs

    * Adding Unit test to ContainerOperationProvider

    * Adding another test to ContainerOperationProvider

    * placed the docker logs output in dedicated ##group section

    * Removed the exception thrown if the service container was not healthy

    * Removed duplicated logging to the executionContext

    * Updated the container logs sub-section message

    * Print service containers only if they were healthy
    Unhealthy service logs are printed in ContainerHealthCheckLogs called prior to this step.

    * Removed recently added method to inspect docker logs
    The method was doing the same thing as the existing DockerLogs method.

    * Added execution context error
    This will make a failed health check more visible in the UI without disrupting the execution of the program.

    * Removing the section 'Waiting for all services to be ready'

    Since nested subsections are not being displayed properly and we already need one subsection per service error.

    * Update src/Runner.Worker/Container/DockerCommandManager.cs

    Co-authored-by: Tingluo Huang <tingluohuang@github.com>

    * Update src/Test/L0/TestHostContext.cs

    Co-authored-by: Tingluo Huang <tingluohuang@github.com>

    * Change the logic for printing Service Containers logs

    Service container logs will be printed in the 'Start containers' section only if there is an error.
    Healthy services will have their logs printed in the 'Stop Containers' section.

    * Removed unused import

    * Added back section group.

    * Moved service containers error logs to separate group sections

    * Removed the test testing the old logic flow.

    * Remove unnecessary 'IsAnyUnhealthy' flag

    * Remove printHello() function

    * Add newline to TestHostContext

    * Remove unnecessary field 'UnhealthyContainers'

    * Rename boolean flag indicating service container failure

    * Refactor healthcheck logic to separate method to enable unit testing.

    * Remove the default value for bool variable

    * Update src/Runner.Worker/ContainerOperationProvider.cs

    Co-authored-by: Tingluo Huang <tingluohuang@github.com>

    * Update src/Runner.Worker/ContainerOperationProvider.cs

    Co-authored-by: Tingluo Huang <tingluohuang@github.com>

    * Rename Healthcheck back to ContainerHealthcheck

    * Make test sequential

    * Unextract the container error logs method

    * remove test asserting thrown exception

    * Add configure await

    * Update src/Test/L0/Worker/ContainerOperationProviderL0.cs

    Co-authored-by: Tingluo Huang <tingluohuang@github.com>

    * Update src/Test/L0/Worker/ContainerOperationProviderL0.cs

    Co-authored-by: Tingluo Huang <tingluohuang@github.com>

    * Update src/Test/L0/Worker/ContainerOperationProviderL0.cs

    Co-authored-by: Tingluo Huang <tingluohuang@github.com>

    * Update src/Test/L0/Worker/ContainerOperationProviderL0.cs

    Co-authored-by: Tingluo Huang <tingluohuang@github.com>

    * Update src/Test/L0/Worker/ContainerOperationProviderL0.cs

    Co-authored-by: Tingluo Huang <tingluohuang@github.com>

    * Add back test asserting exception

    * Check service exit code if there is no healtcheck configured

    * Remove unnecessary healthcheck for healthy service container

    * Revert "Check service exit code if there is no healtcheck configured"

    This reverts commit fec24e8.

    Co-authored-by: Ava S <avastancu@github.com>
    Co-authored-by: Tingluo Huang <tingluohuang@github.com>

    * Add warning for users using deprecated commands (#2164)

    * Prepare release notes for v2.298.0 (#2169)

    * Fix incorrect template vars to show SHA for WIN-ARM64 (#2171)

    * Backport 2.298.1 (#2175)

    * Update releaseNote.md

    * Update runnerversion

    Co-authored-by: Nikola Jokic <97525037+nikola-jokic@users.noreply.github.com>
    Co-authored-by: Ava Stancu <avastancu@github.com>
    Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
    Co-authored-by: Thomas Boop <52323235+thboop@users.noreply.github.com>
    Co-authored-by: Nikola Jokic <nikola-jokic@github.com>
    Co-authored-by: Stefan Ruvceski <96768603+ruvceskistefan@users.noreply.github.com>
    Co-authored-by: Francesco Renzi <rentziass@github.com>
    Co-authored-by: JoannaaKL <joannaakl@github.com>
    Co-authored-by: Tatyana Kostromskaya <32135588+takost@users.noreply.github.com>
    Co-authored-by: Tauhid Anjum <tauhidanjum@gmail.com>
    Co-authored-by: Tingluo Huang <tingluohuang@github.com>

commit 416548c
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Sep 15 09:50:33 2022 +0000

    No quotes or double lines in frn

commit 3cc465d
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Sep 15 09:45:10 2022 +0000

    Echo in init.sh

commit f675120
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Sep 15 09:35:58 2022 +0000

    Init as sudo

commit b4ebe66
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Sep 15 09:12:12 2022 +0000

    Use vscode user

commit 489071e
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Sep 15 09:02:54 2022 +0000

    Comment waitFor to explain it

commit 27686b5
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Sep 15 08:53:50 2022 +0000

    Better first run, wait for init

commit 40d1650
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Sep 15 08:41:29 2022 +0000

    Better init message

commit 1875c95
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Sep 15 10:21:17 2022 +0200

    Add frn

commit f33a3ce
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Wed Sep 14 14:08:07 2022 +0000

    Use locally built dockerfile

commit 4f99399
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Wed Sep 14 14:23:07 2022 +0200

    Bring first run cpy up

commit cda6c68
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Wed Sep 14 14:08:50 2022 +0200

    Use base.dockerfile for now

commit 262ade6
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Wed Sep 14 14:05:12 2022 +0200

    Update init.sh

commit bb1d080
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Mon Sep 12 16:38:56 2022 +0200

    Don't open dev.sh

commit a04569f
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Mon Sep 12 12:47:03 2022 +0000

    Copy firstrun elsewhere

commit 40ab9cd
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Mon Sep 12 12:26:08 2022 +0000

    Try first run notce

commit d773599
Merge: 1575074 2f9271a
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Mon Sep 12 12:18:06 2022 +0000

    Merge branch 'fhammerl/try-ghcs' of https://github.com/actions/runner into fhammerl/try-ghcs

commit 1575074
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Mon Sep 12 12:17:55 2022 +0000

    Forgot 'init.sh' lives in source, meaning postCreateCommand has no access to it

commit 2f9271a
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Mon Sep 12 12:12:09 2022 +0000

    Run init.sh from source instead of docker img

commit 410e303
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Mon Sep 12 12:05:25 2022 +0000

    Better init (no restore + rerunnable)

commit 1ff0cdc
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Mon Sep 12 11:41:03 2022 +0000

    Use prebuilt image

commit 1cfd869
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Mon Sep 12 13:29:55 2022 +0200

    Add gitlens and default container makefile

commit 7b1f2f0
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Tue Sep 6 16:10:30 2022 +0000

    Better init

commit d337798
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Tue Sep 6 16:13:00 2022 +0200

    Use dind devcontainer with correct dotnet sdk

commit 24b087d
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Mon Sep 5 16:16:20 2022 +0200

    Try codespaces

commit 49e808a
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Tue Aug 23 15:39:43 2022 +0200

    Update init.sh

commit 90b99d3
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Tue Aug 23 12:59:20 2022 +0000

    Update to 300

commit 2284a75
Merge: d28fe56 1cb1779
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Tue Aug 23 12:58:21 2022 +0000

    giMerge branch 'main' of https://github.com/actions/runner into fhammerl/devcontainers

commit d28fe56
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Mar 17 21:26:23 2022 +0000

    Restore symlink

commit d6a244f
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Mar 17 21:23:19 2022 +0000

    No need for service restore

commit 0668503
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Mar 17 21:19:01 2022 +0000

    More setup

commit 4ddedf5
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Mar 17 22:08:27 2022 +0100

    Update devcontainer.json

commit bcc667a
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Mar 17 22:03:10 2022 +0100

    Delete Dockerfile

commit 994ff04
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Thu Mar 17 21:45:24 2022 +0100

    Define dockerfile

commit 58de023
Merge: fd09b83 00e5825
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Thu Mar 17 21:43:10 2022 +0100

    Merge branch 'fhammerl/devcontainers' of https://github.com/actions/runner into fhammerl/devcontainers

commit fd09b83
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Thu Mar 17 21:42:01 2022 +0100

    Use slimmer image

commit 00e5825
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Mar 17 10:30:06 2022 +0000

    Symlink more .net stuff

commit c21469c
Author: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
Date:   Thu Mar 17 10:13:18 2022 +0000

    Create symlink

commit 206d50d
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Thu Mar 17 09:58:52 2022 +0000

    Remove Dockerfile

commit 6a43245
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Thu Mar 17 09:58:29 2022 +0000

    Add extension and exclude path

commit e3e3c81
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Thu Mar 17 09:56:01 2022 +0000

    Add default

commit 4d76eb4
Merge: 4c5730f ddc700e
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Thu Mar 17 10:12:43 2022 +0100

    Merge branch 'main' of https://github.com/actions/runner into fhammerl/devcontainers

commit 4c5730f
Author: Ferenc Hammerl <fhammerl@github.com>
Date:   Fri Mar 11 14:19:30 2022 +0100

    Add default codespace settings
@redsun82
Copy link

I just hit this bug as well

redsun82 added a commit to github/codeql that referenced this issue Nov 30, 2022
Because of actions/runner#2009 the deeply
nested action cache was failing to save the cache in the post run phase.

For the moment we just avoid the nesting with a copy-pasted action
snippet.
redsun82 added a commit to github/codeql that referenced this issue Nov 30, 2022
Because of actions/runner#2009 the deeply
nested action cache was failing to save the cache in the post run phase.

For the moment we just avoid the nesting with a copy-pasted action
snippet.
redsun82 added a commit to github/codeql that referenced this issue Nov 30, 2022
Because of actions/runner#2009 the deeply
nested action cache was failing to save the cache in the post run phase.

For the moment we just avoid the nesting with a copy-pasted action
snippet.
redsun82 added a commit to github/codeql that referenced this issue Nov 30, 2022
Because of actions/runner#2009 the deeply
nested action cache was failing to save the cache in the post run phase.

For the moment we just avoid the nesting with a copy-pasted action
snippet.
redsun82 added a commit to github/codeql that referenced this issue Nov 30, 2022
Because of actions/runner#2009 the deeply
nested action cache was failing to save the cache in the post run phase.

For the moment we just avoid the nesting with a copy-pasted action
snippet.
redsun82 added a commit to github/codeql that referenced this issue Nov 30, 2022
Because of actions/runner#2009 the deeply
nested action cache was failing to save the cache in the post run phase.

For the moment we just avoid the nesting with a copy-pasted action
snippet.
AdamOlech pushed a commit to antmicro/runner that referenced this issue Nov 30, 2022
@cognitiaclaeves
Copy link

This is a pretty nasty issue when you're trying to rely on a nested action (to get around github's lack of retry) and have no idea why it is failing.

@mkellerman-relativity
Copy link

Bump

@Sophie1142
Copy link

Upvoting this issue

@Yehonal
Copy link

Yehonal commented Jul 15, 2023

news here?

@haochenx
Copy link

haochenx commented Jul 23, 2023

update: please see #2009 (comment) and disregard this comment

(original comment) seems like a fix is coming together with https://github.com//pull/1803? is there an estimation for #1803 to be merged?

it seems that there's already a fix in nikola-jokic@69f84e9
is it possible to get it shipped first without waiting for other changes that #1803 might bring?

@ChristopherHX
Copy link
Contributor

No nikola-jokic@69f84e9 is not a fix for the bug described here, the commit message had a typo and was not related to this issue.

@ChristopherHX
Copy link
Contributor

Hopefully someone can review: #2710, I provide a more meaningful reproduction workflow:

To reproduce run: https://github.com/ChristopherHX/local-post-steps-bug

See https://github.com/ChristopherHX/local-post-steps-bug/actions/runs/5661561768/job/15339706765

Post job cleanup.
Post job cleanup.
"{\n  \"depth2\": {\n    \"outputs\": {},\n    \"outcome\": \"success\",\n    \"conclusion\": \"success\"\n  }\n}"
Post job cleanup.
"{\n  \"depth2\": {\n    \"outputs\": {},\n    \"outcome\": \"success\",\n    \"conclusion\": \"success\"\n  }\n}"
Post job cleanup.
"{\n  \"depth2\": {\n    \"outputs\": {},\n    \"outcome\": \"success\",\n    \"conclusion\": \"success\"\n  }\n}"
Post job cleanup.
"{\n  \"depth2\": {\n    \"outputs\": {},\n    \"outcome\": \"success\",\n    \"conclusion\": \"success\"\n  }\n}"
  • The first post step executes just fine
  • The second steps context should only contain depth3
  • The third steps context should only contain depth4
  • The fourth steps context should be empty

After applying this change we have

[.github/workflows/main.yml / local-post-steps-bug] Running: Post Run /./depth1
| Post job cleanup.
| Post job cleanup.
| "{\n  \"depth2\": {\n    \"outputs\": {},\n    \"outcome\": \"success\",\n    \"conclusion\": \"success\"\n  }\n}"
| Post job cleanup.
| Post job cleanup.
| "{\n  \"depth3\": {\n    \"outputs\": {},\n    \"outcome\": \"success\",\n    \"conclusion\": \"success\"\n  }\n}"
| Post job cleanup.
| Post job cleanup.
| "{\n  \"depth4\": {\n    \"outputs\": {},\n    \"outcome\": \"success\",\n    \"conclusion\": \"success\"\n  }\n}"
| Post job cleanup.
| Post job cleanup.
| "{}"
[.github/workflows/main.yml / local-post-steps-bug] Succeeded: Post Run /./depth1

The difference to the OP is, you can actually see that the wrong steps context has been provided by actions/runner and after the fix it have the expected values like in nested remote composite actions.

@Sytten
Copy link

Sytten commented Oct 5, 2023

@sethrylan Could we get some kind of response from the dev team at GitHub for this issue. It is pretty bad and the fix is a one liner...

@keradus
Copy link

keradus commented Nov 4, 2023

For those who stumbled on using inputs or outputs for composite GitHub Actions, I found using $GITHUB_ENV to be a viable workaround.

You may find a working example in PHP-CS-Fixer/PHP-CS-Fixer#7415 .
(And also a lot of debugging in keradus/PHP-CS-Fixer#36 .)

Example snippet
name: "Install composer deps"

inputs:
  flags:
    description: 'Composer flags'
    required: false

runs:
  using: "composite"
  steps:
    # Warning!
    # Use $GITHUB_ENV instead of $GITHUB_OUTPUT.
    #
    # The actions/cache is, on calling it in this composite action, reading the cache,
    # and then also registering a shutdown function for whole workflow, to write the cache afterwards.
    #
    # That registered shutdown function is _NOT_ having access to inputs.* nor steps.*.outputs for
    # `path` parameter, which is evaluated on both stages (read and write), yet `key` parameters
    # are evaluated on start only and are not affected by this issue.
    #
    # Unfortunately, when the issue is faced, it does not break the build, simply raising a warning
    # and completing the build successuflly, yet without storing the cache:
    # > Warning: Input required and not supplied: path

    - name: Get Composer cache params
      shell: bash
      run: |
        echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
        echo "COMPOSER_CACHE_PHP=$(php -r 'echo PHP_VERSION;')" >> $GITHUB_ENV

    - name: Cache Composer dependencies
      uses: actions/cache@v3
      with:
        path: ${{ env.COMPOSER_CACHE_DIR }}
        key: Composer-${{ runner.os }}-${{ env.COMPOSER_CACHE_PHP }}-${{ hashFiles('**/composer.json') }}-${{ hashFiles('**/composer.lock') }}
        restore-keys: |
          Composer-${{ runner.os }}-${{ env.COMPOSER_CACHE_PHP }}-${{ hashFiles('**/composer.json') }}-
          Composer-${{ runner.os }}-${{ env.COMPOSER_CACHE_PHP }}-
          Composer-${{ runner.os }}-

    - name: Install dependencies
      uses: nick-invision/retry@v2
      with:
        timeout_minutes: 5
        max_attempts: 5
        retry_wait_seconds: 30
        # `--no-scripts` to avoid side-effects (e.g. installing dev-tools for all jobs on CI level),
        # all executed scripts should be explicit and run only when needed.
        command: composer update --optimize-autoloader --no-interaction --no-progress --no-scripts ${{ inputs.flags }}

    - name: Show versions of packages
      shell: bash
      run: composer info -D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good-first-issue Runner Bug Bug fix scope to the runner
Projects
None yet
Development

Successfully merging a pull request may close this issue.