We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The checkout and setup-java actions should be extracted into a re-usable composite action.
checkout
setup-java
In many workflow files we find multiple blocks of
# Set-Up - name: Checkout uses: actions/checkout@v3.3.0 - name: Set up JDK 11 uses: actions/setup-java@v3.11.0 with: java-version: '17' distribution: 'temurin' cache: 'gradle'
which not only contains a small bug ("Set up JDK 11" instead of "17"), but it is also repetitive.
avoid duplication, create consistency, one place to maintain the code, e.g. for version upgrades
The text was updated successfully, but these errors were encountered:
tuncaytunc-zf
Successfully merging a pull request may close this issue.
WHAT
The
checkout
andsetup-java
actions should be extracted into a re-usable composite action.In many workflow files we find multiple blocks of
which not only contains a small bug ("Set up JDK 11" instead of "17"), but it is also repetitive.
WHY
avoid duplication, create consistency, one place to maintain the code, e.g. for version upgrades
The text was updated successfully, but these errors were encountered: