Hello,
Can we use the latest version of any Github Actions package by default without specifying the version of the package. Currently, if there is any version change for the action script, we need to update the workflow definition file.
Example:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
In above example, can we specify just actions/checkout
without the version prefix (@v2), does it automatically fetch the latest version or is something like this even possible ?
–
Thanks.