You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2019/10/07 12:46:29 UTC

[jmeter] branch vlsi/github_actions updated: Limit fetch depth

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


The following commit(s) were added to refs/heads/vlsi/github_actions by this push:
     new 667fe22  Limit fetch depth
667fe22 is described below

commit 667fe22c7ff2a72bd99ed31ff78cc79d3a9a68d2
Author: Vladimir Sitnikov <si...@gmail.com>
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..7af8126 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: