JAVA_HOME environment variable missing /bin at the end in ubuntu github actions runner
I am trying to run an application that needs Java as a prerequisite on a github actions runner. My yaml script is like: steps: . . - name: Setup Java uses: actions/setup-java@v2 with: distribution: 'adopt' java-version: '21' . . -…