This is an automated email from the ASF dual-hosted git repository. vladimirsitnikov pushed a commit to branch vlsi/github_actions in repository https://gitbox.apache.org/repos/asf/jmeter.git
commit e7325e5b41d21366e98be57f678ee8f684a5c8b5 Author: Vladimir Sitnikov <[email protected]> AuthorDate: Mon Oct 7 15:46:20 2019 +0300 Limit fetch depth --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f0714ba..86454fd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,6 +16,8 @@ jobs: container: junitteam/build:latest steps: - uses: actions/checkout@master + with: + fetch-depth: 50 - name: 'Test' run: | ./gradlew --version @@ -26,6 +28,8 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@master + with: + fetch-depth: 50 - name: 'Set up JDK 12' uses: actions/setup-java@v1 with: @@ -41,6 +45,8 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@master + with: + fetch-depth: 50 - name: 'Set up JDK 12' uses: actions/setup-java@v1 with:
