shunping commented on issue #30525: URL: https://github.com/apache/beam/issues/30525#issuecomment-3572201375
I took a look at this issue. The flaky error is all about ``` Parameter ''using: node24' is not supported, use 'docker', 'node12', 'node16' or 'node20' instead. ... Error: Failed to load google-github-actions/auth/v3/action.yml ``` It happened when an older version of github runner was used. For example: - https://github.com/apache/beam/actions/runs/19637656224/job/56232373130 - https://github.com/apache/beam/actions/runs/19608402744/job/56150575863 The failure jobs used 2.318.0, while ``` Current runner version: '2.318.0' ... ``` It seems that node24 is added at 2.327.1, so it failed if an older github runner is used. https://github.com/actions/runner/releases/tag/v2.327.1 The successful jobs, on the other hand, all run with 2.329 (e.g. https://github.com/apache/beam/actions/runs/19637656224/job/56232373160). -- 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]
