fjogeleit / http-request-action

Create HTTP Requests in GitHub Actions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Update v1 tag to latest (1.15.2)

randyshoopman opened this issue · comments

Please tag 1.15.2 as v1. It brings in Node 20 which GitHub Actions is complaining about:

Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: fjogeleit/http-request-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.

Thanks

Am facing the same issue, so what would be the resolution for this? is it just changing action from uses: fjogeleit/http-request-action@v1 to uses: fjogeleit/http-request-action@v1.15.2? or is there something more to it?

fjogeleit/http-request-action@v1 points to the same commit as fjogeleit/http-request-action@v1.5.2, so it should not make any difference, both tags using node v20 (https://github.com/fjogeleit/http-request-action/blob/v1/action.yml#L78)

Maybe you have some caching which was not updated? You could try to use a pinned version like fjogeleit/http-request-action@v1.15.2 but v1 should also work.

I tried using fjogeleit/http-request-action@v1.15.2 still getting the following error:

Error: System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. (Parameter ''using: node20' is not supported, use 'docker', 'node12' or 'node16' instead.') at GitHub.Runner.Worker.ActionManifestManager.ConvertRuns(IExecutionContext executionContext, TemplateContext templateContext, TemplateToken inputsToken, String fileRelativePath, MappingToken outputs) at GitHub.Runner.Worker.ActionManifestManager.Load(IExecutionContext executionContext, String manifestFile) Error: Fail to load fjogeleit/http-request-action/v1.15.2/action.yml

I even cleared the workflow cache for that repo. Could it be a server issue?

Thats a totally different issue, looks like your runner does not support node20. Maybe you use outdated machines?

I am using ubuntu 20.04 EC2 instance on AWS, the instance doesn't seems to be the issue here.

As your issue describes:

Your runner does not support Node20, only lower versions like Node16 but this versions are deprecated for GitHub Runners.

You can either use an older version of this action, like v1.15.1, or you need to update your Runner instances to support Node v20.

This is my workflow file


name: Delete User

on:
  workflow_dispatch:
    inputs:
      phoneNumber:
        description: 'User phone number with country code'
        required: true
        default: '+1'
      environment:
        description: 'The environment. Eg: sandbox, uat'
        required: true
        default: 'sandbox'

jobs:
  delete_user:
    runs-on: ${{ github.event.inputs.environment }}
    steps:
      - name: Delete User
        id: deleteUser
        uses: fjogeleit/http-request-action@v1.15.2
        with:
          url: https://internal.${{github.event.inputs.environment}}.gritfinancial.org/api/gritAdmin/users/${{github.event.inputs.phoneNumber}}
          method: DELETE
          timeout: 10000
      - name: Response
        run: echo ${{ steps.deleteUser.outputs.response }}

I am not sure from where it is picking up node 20.

runs-on: ${{ github.event.inputs.environment }}

As I said, from ayour runner instance, which seems the value of the environment

yeah, am using variable for the labels, one thing to mention is am using the spot instances for self-hosted runners and i noticed that the workflow worked on previous instance but after the instance was created the workflow stopped working.

Then you should update your self-hosted runners to support newer Node versions.

Yes.. finally got that......apparently I was not using the latest GitHub runner. Thank you @fjogeleit.