diff --git a/.github/workflows/js-publish.yml b/.github/workflows/js-publish.yml index 22e45412..2beb9953 100644 --- a/.github/workflows/js-publish.yml +++ b/.github/workflows/js-publish.yml @@ -11,6 +11,8 @@ jobs: build: runs-on: ubuntu-latest steps: + - name: Disable automatic git CRLF conversion + run: git config --global core.autocrlf false - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # pin@v4 with: diff --git a/.github/workflows/js-test.yml b/.github/workflows/js-test.yml index 0449ca9b..c4e7977f 100644 --- a/.github/workflows/js-test.yml +++ b/.github/workflows/js-test.yml @@ -24,6 +24,8 @@ jobs: os: [ "ubuntu-latest", "macos-latest" ] runs-on: ${{ matrix.os }} steps: + - name: Disable automatic git CRLF conversion + run: git config --global core.autocrlf false - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # pin@v4 with: diff --git a/.github/workflows/python-build-package.yml b/.github/workflows/python-build-package.yml index e87d6fac..7ac86d3a 100644 --- a/.github/workflows/python-build-package.yml +++ b/.github/workflows/python-build-package.yml @@ -28,6 +28,8 @@ jobs: - runner: macos-14 target: aarch64 steps: + - name: Disable automatic git CRLF conversion + run: git config --global core.autocrlf false - uses: actions/checkout@v4 - name: Setup Python uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # pin@v5 diff --git a/.github/workflows/python-test-published-package.yml b/.github/workflows/python-test-published-package.yml index 33877c12..d0060f6d 100644 --- a/.github/workflows/python-test-published-package.yml +++ b/.github/workflows/python-test-published-package.yml @@ -24,6 +24,8 @@ jobs: os: [ "ubuntu-latest", "macos-latest", "windows-latest" ] runs-on: ${{ matrix.os }} steps: + - name: Disable automatic git CRLF conversion + run: git config --global core.autocrlf false - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 - name: Setup Python uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # pin@v5 diff --git a/.github/workflows/python-test-published-rc-package.yml b/.github/workflows/python-test-published-rc-package.yml index 63cf1afa..2f3b0304 100644 --- a/.github/workflows/python-test-published-rc-package.yml +++ b/.github/workflows/python-test-published-rc-package.yml @@ -24,6 +24,8 @@ jobs: os: [ "ubuntu-latest", "macos-latest", "windows-latest" ] runs-on: ${{ matrix.os }} steps: + - name: Disable automatic git CRLF conversion + run: git config --global core.autocrlf false - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 - name: Setup Python uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # pin@v5 diff --git a/.github/workflows/python-test-suite.yml b/.github/workflows/python-test-suite.yml index 9c2d5900..4ab20b95 100644 --- a/.github/workflows/python-test-suite.yml +++ b/.github/workflows/python-test-suite.yml @@ -26,6 +26,9 @@ jobs: os: [ "ubuntu-latest", "macos-latest" ] runs-on: ${{ matrix.os }} steps: + - name: Disable automatic git CRLF conversion + run: git config --global core.autocrlf false + - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 - name: Setup Python diff --git a/.github/workflows/rust-test.yml b/.github/workflows/rust-test.yml index c4d495fd..d9b00a73 100644 --- a/.github/workflows/rust-test.yml +++ b/.github/workflows/rust-test.yml @@ -19,6 +19,8 @@ jobs: changelog: runs-on: ubuntu-latest steps: + - name: Disable automatic git CRLF conversion + run: git config --global core.autocrlf false - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 with: fetch-depth: 0 @@ -31,6 +33,8 @@ jobs: matrix: toolchain: [stable, nightly] steps: + - name: Disable automatic git CRLF conversion + run: git config --global core.autocrlf false - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 - run: rustup default ${{ matrix.toolchain }} - run: rustup component add rustfmt clippy @@ -42,6 +46,8 @@ jobs: matrix: os: [ubuntu, macos, windows] steps: + - name: Disable automatic git CRLF conversion + run: git config --global core.autocrlf false - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4 - run: cargo build --release working-directory: rust/cli