Giter Site home page Giter Site logo

Comments (5)

HardNorth avatar HardNorth commented on September 21, 2024 1

Agree, I'm seeing the same issue. For some reasons compiled version of the action has not changed:
https://github.com/mindsers/changelog-reader-action/blob/master/dist/index.js#L2878

function setOutput(name, value) {
    process.stdout.write(os.EOL);
    command_1.issueCommand('set-output', { name }, value);
}

This is how it should look like:

function setOutput(name, value) {
    const filePath = process.env['GITHUB_OUTPUT'] || '';
    if (filePath) {
        return file_command_1.issueFileCommand('OUTPUT', file_command_1.prepareKeyValueMessage(name, value));
    }
    process.stdout.write(os.EOL);
    command_1.issueCommand('set-output', { name }, utils_1.toCommandValue(value));
}

from changelog-reader-action.

mindsers avatar mindsers commented on September 21, 2024

Should be fixed by v2.2.1

from changelog-reader-action.

guihkx avatar guihkx commented on September 21, 2024

Hello @mindsers, I'm still seeing these warnings with 2.2.1:

image

Any clues?

from changelog-reader-action.

guihkx avatar guihkx commented on September 21, 2024

(Aside: The README claims validation_depth is set to 0 by default, but in the screenshot above it's set to 10 and I haven't configured it).

from changelog-reader-action.

mindsers avatar mindsers commented on September 21, 2024

Looking. Weird that the built version didn't change. I'll publish a new version with the fix soon.

from changelog-reader-action.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.