This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee.git
commit 6a14d6e9e4ee42df458f90b848e9efa8ada030ab Author: Richard Zowalla <[email protected]> AuthorDate: Wed Feb 9 21:43:56 2022 +0100 GitHub Actions: Use LF for checkouts to be consistent --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index be7e57f..de39d69 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,6 +14,11 @@ jobs: runs-on: ubuntu-latest steps: + - name: Set git to use LF + run: | + git config --global core.autocrlf false + git config --global core.eol lf + - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1
