microsoft / azure-pipelines-tasks

Tasks for Azure Pipelines
https://aka.ms/tfbuild
MIT License
3.5k stars 2.61k forks source link

Task CheckoutGitFileFromBuild@0 receiving Node version (6) that is end-of-life warning in pipeline #20595

Closed adamshawvipps closed 2 weeks ago

adamshawvipps commented 2 weeks ago

Using Azure Devops Pipelines with the classic task groups.

On the "initialize job" step we get:

2024-10-25T08:38:35.9280812Z Created artifacts directory: /home/vsts/work/r1/a 2024-10-25T08:38:35.9355138Z Download all required tasks. 2024-10-25T08:38:35.9592225Z Downloading task: DownloadBuildArtifacts (0.247.1) 2024-10-25T08:38:38.4613249Z Downloading task: DownloadPipelineArtifact (1.230.0) 2024-10-25T08:38:38.5106801Z Downloading task: Bash (3.246.1) 2024-10-25T08:38:38.9256042Z Downloading task: CheckoutGitFileFromBuild (0.1.36) 2024-10-25T08:38:39.2753832Z ##[warning]Task 'Check out a file from Git repo build was started from' version 0 (CheckoutGitFileFromBuild@0) is dependent on a Node version (6) that is end-of-life. Contact the extension owner for an updated version of the task. Task maintainers should review Node upgrade guidance: https://aka.ms/node-runner-guidance

Doesn't seem that we have any control over the CheckoutGitFileFromBuild task or its components.

DenisRumyantsev commented 2 weeks ago

Hi @adamshawvipps, the CheckoutGitFileFromBuild@0 pipeline task is not in-the-box task, and the source code of this task is not located in this repo. It means you are using an Azure DevOps extension installed from https://marketplace.visualstudio.com/, and this extension contains that task. Please try to find out which extension you are using, in order to contact the extension owners.

adamshawvipps commented 2 weeks ago

Thank you @DenisRumyantsev