check-jdk-updates.yml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. name: Checks JDK version for minor updates
  2. on:
  3. schedule:
  4. - cron: '0 0 1 * *' # run once a month at the first day of month
  5. env:
  6. JDK_VERSION: '23.0.1+11'
  7. JDK_VENDOR: zulu
  8. jobs:
  9. jdk-current:
  10. name: Check out current version
  11. runs-on: ubuntu-latest
  12. outputs:
  13. jdk-date: ${{ steps.get-data.outputs.jdk-date}}
  14. steps:
  15. - uses: actions/setup-java@v4
  16. with:
  17. java-version: ${{ env.JDK_VERSION }}
  18. distribution: ${{ env.JDK_VENDOR }}
  19. check-latest: false
  20. - name: Read JAVA_VERSION_DATE and store in env variable
  21. id: get-data
  22. run: |
  23. date=$(cat ${JAVA_HOME}/release | grep "JAVA_VERSION_DATE=\"" | awk -F'=' '{print $2}' | tr -d '"')
  24. echo "jdk-date=${date}" >> "$GITHUB_OUTPUT"
  25. jdk-latest:
  26. name: Checkout latest jdk version
  27. runs-on: ubuntu-latest
  28. env:
  29. JDK_MAJOR_VERSION: 23
  30. outputs:
  31. jdk-date: ${{ steps.get-data.outputs.jdk-date}}
  32. jdk-version: ${{ steps.get-data.outputs.jdk-version}}
  33. steps:
  34. - name: Extract major version
  35. run: echo 'JDK_MAJOR_VERSION=${{ env.JDK_VERSION }}'.substring(0,20) >> "$env:GITHUB_ENV"
  36. shell: pwsh
  37. - uses: actions/setup-java@v4
  38. with:
  39. java-version: ${{ env.JDK_MAJOR_VERSION}}
  40. distribution: ${{ env.JDK_VENDOR }}
  41. check-latest: true
  42. - name: Read JAVA_VERSION_DATE and store in env variable
  43. id: get-data
  44. run: |
  45. date=$(cat ${JAVA_HOME}/release | grep "JAVA_VERSION_DATE=\"" | awk -F'=' '{print $2}' | tr -d '"')
  46. echo "jdk-date=${date}" >> "$GITHUB_OUTPUT"
  47. version=$(cat ${JAVA_HOME}/release | grep "JAVA_RUNTIME_VERSION=\"" | awk -F'=' '{print $2}' | tr -d '"')
  48. echo "jdk-version=${version}" >> "$GITHUB_OUTPUT"
  49. notify:
  50. name: Notifies for jdk update
  51. runs-on: ubuntu-latest
  52. needs: [jdk-current, jdk-latest]
  53. if: ${{ needs.jdk-latest.outputs.jdk-date }} > ${{ needs.jdk-current.outputs.jdk-date }}
  54. steps:
  55. - name: Slack Notification
  56. uses: rtCamp/action-slack-notify@v2
  57. env:
  58. SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
  59. SLACK_USERNAME: 'Cryptobot'
  60. SLACK_ICON: false
  61. SLACK_ICON_EMOJI: ':bot:'
  62. SLACK_CHANNEL: 'cryptomator-desktop'
  63. SLACK_TITLE: "JDK update available"
  64. SLACK_MESSAGE: "Cryptomator-CI JDK can be upgraded to ${{ needs.jdk-latest.outputs.jdk-version }}. See https://github.com/cryptomator/cryptomator/wiki/How-to-update-the-build-JDK for instructions."
  65. SLACK_FOOTER: false
  66. MSG_MINIMAL: true