question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Support multiple versions in a single invocation

See original GitHub issue

I know I can do this:

- name: Setup dotnet
  uses: actions/setup-dotnet@v1
  with:
    dotnet-version: '2.1.811'
- name: Setup dotnet
  uses: actions/setup-dotnet@v1
  with:
    dotnet-version: '3.1.404'
- name: Setup dotnet
  uses: actions/setup-dotnet@v1
  with:
    dotnet-version: '5.0.100'

but I’d like to do this:

- name: Setup dotnet
  uses: actions/setup-dotnet@v1
  with:
    dotnet-versions: ['2.1.811', '3.1.404', '5.0.100']

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Reactions:42
  • Comments:12 (10 by maintainers)

github_iconTop GitHub Comments

1reaction
vsafonkincommented, Jun 28, 2021

@adamralph, thank you for your patience.

1reaction
adamralphcommented, Jun 28, 2021

@vsafonkin thanks for the update.

FWIW, this is the first time (to my knowledge) that a maintainer has commented on this issue. Given the enthusiasm shown for it (currently 36 upvotes) it would be nice to have received some response a little earlier, even if it is just “not now, but later”. It’s good to know that you have this in your sights. 👍

Read more comments on GitHub >

github_iconTop Results From Across the Web

REST API: Multiple versions, single application? [closed]
I am working on a REST API where I will have to introduce some breaking changes soon, so a v2 is needed. We...
Read more >
How it works: multi-versioning applications - IBM
You can invoke a specific version of a multi-versioned application by using the EXEC CICS INVOKE APPLICATION command. For more information about invoking...
Read more >
Lambda function versions - AWS Documentation
If you decide not to publish function versions, you can invoke the function using either the qualified or unqualified ARN in your event...
Read more >
6 Steps to Create a Multi-Version React Application
This hybrid approach is meant to be an escape hatch, not the norm. Using a single version of React is the best practice,...
Read more >
Chapter 6. Multiple Concurrent Versions Red Hat JBoss BPM ...
Multiple versions are deployed using the KIE_CONTAINER_DEPLOYMENT variable, specifying the <alias>=<group_id>:<artifact_id>:<version> for each version of the ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found