tvalentyn commented on PR #28539: URL: https://github.com/apache/beam/pull/28539#issuecomment-1728053209
from reading https://github.com/actions/runner/issues/2816 , it might be caused when a cached version of a step has a different # of stages. recommendation is to use the same version for a checkout step. I am seeing we using checkout@v3 in several suites - could this be an issue? ``` :workflows$ rg "actions/checkout" . | grep v3 ./beam_PostCommit_Java_Nexmark_Spark.yml: - uses: actions/checkout@v3 ./beam_PostCommit_Java_Nexmark_Dataflow.yml: - uses: actions/checkout@v3 ./README.md: - uses: actions/checkout@v3 ./README.md: - uses: actions/checkout@v3 ./beam_PostCommit_Java_Nexmark_Flink.yml: - uses: actions/checkout@v3 ./beam_PostCommit_Java_Nexmark_Direct.yml: - uses: actions/checkout@v3 ./beam_PostCommit_Java_Nexmark_Dataflow_V2_Java.yml: - uses: actions/checkout@v3 ./beam_PostCommit_Python_Nexmark_Direct.yml: - uses: actions/checkout@v3 ./beam_PostCommit_Javadoc.yml: - uses: actions/checkout@v3 ./beam_PostCommit_Java_Nexmark_Dataflow_V2.yml: - uses: actions/checkout@v3 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
