Compare commits

...

3 Commits
main ... master

Author SHA1 Message Date
Sascha Mann
0fb79b8f6a Improve deprecation warning 2023-03-15 23:05:59 +01:00
Sascha Mann
a29dc8944a Remove linebreaks 2023-03-15 23:04:45 +01:00
Sascha Mann
e4bba91d95 Deprecate @master
Turns out GitHub doesn't forward @master to @main
2023-03-15 22:59:44 +01:00

View File

@@ -36,6 +36,11 @@ inputs:
runs: runs:
using: 'composite' using: 'composite'
steps: steps:
- name: 'DEPRECATION WARNING: julia-actions/julia-runtest@master will no longer receive updates and will start to error in the future. Please use version tags like julia-actions/julia-runtest@v1 or commit SHAs in your workflows!'
run: |
echo "::warning title=DEPRECATION WARNING::julia-actions/julia-runtest@master will no longer receive updates and will start to error in the future. Please use version tags like julia-actions/julia-runtest@v1 or commit SHAs in your workflows!"
echo "# :warning: DEPRECATION WARNING :warning: julia-actions/julia-runtest@master will no longer receive updates and will start to error in the future. Please use version tags like julia-actions/julia-runtest@v1 or commit SHAs in your workflows!" >> $GITHUB_STEP_SUMMARY
shell: bash
- name: Set and export registry flavor preference - name: Set and export registry flavor preference
run: echo "JULIA_PKG_SERVER_REGISTRY_PREFERENCE=${JULIA_PKG_SERVER_REGISTRY_PREFERENCE:-eager}" >> ${GITHUB_ENV} run: echo "JULIA_PKG_SERVER_REGISTRY_PREFERENCE=${JULIA_PKG_SERVER_REGISTRY_PREFERENCE:-eager}" >> ${GITHUB_ENV}
shell: bash shell: bash