Deprecate @master

Turns out GitHub doesn't forward @master to @main
This commit is contained in:
Sascha Mann
2023-03-15 22:59:44 +01:00
parent 3378215696
commit e4bba91d95

View File

@@ -36,6 +36,11 @@ inputs:
runs: runs:
using: 'composite' using: 'composite'
steps: steps:
- name: 'DEPRECATION WARNING: @master will no longer receive updates and will start to error in the future. Please use version tags like @v1 or commit SHAs in your workflows!'
run: |
echo "::warning title=DEPRECATION WARNING::@master will no longer receive updates and will start to error in the future. Please use version tags like @v1 or commit SHAs in your workflows!"
echo "# :warning: DEPRECATION WARNING :warning:\n\n@master will no longer receive updates and will start to error in the future. Please use version tags like @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