Skip to content

Commit ecaf976

Browse files
fixed checkout
1 parent 64aec4c commit ecaf976

14 files changed

+14
-14
lines changed

.github/workflows/android-kotlin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: |
1010
cd kotlin/sample
1111
kotlinc App.kt -include-runtime -d App.jar

.github/workflows/ant.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: |
1010
ant -version
1111
ant -buildfile ant/build.xml

.github/workflows/chrom-driver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: |
1010
cd chrome-driver
1111
pip3 install selenium

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
runs-on: ASrunner
88
steps:
9-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- uses: actions/checkout@v2
1010
- run: |
1111
which cmake
1212
cmake --version

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: |
1010
docker pull debian
1111
docker run debian

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: |
1010
cd go/go-web-app
1111
go get -d

.github/workflows/node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: |
1010
cd node/node-typescript
1111
npm install

.github/workflows/openssl-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: |
1010
echo some_value > input.txt
1111
- run: |

.github/workflows/powershell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: Write-Host hello
1010
shell: pwsh
1111
- run: ./powershell/scripts/hello.ps1

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: |
1010
$version = $(python --version)
1111
Write-Host "Python version in PATH: $version"

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: |
1010
echo $AGENT_TOOLSDIRECTORY/Ruby/2.7.4/x64/bin >> $GITHUB_PATH
1111
- run: |

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: |
1010
cd rust/src
1111
rustc hello.rs

.github/workflows/windows-driver-kit-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: |
1010
cd windows-driver-kit/winkerneltest
1111
dotnet restore winkerneltest.sln

.github/workflows/xamarin-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
8+
- uses: actions/checkout@v2
99
- run: |
1010
cd xamarin-android/vs2019/XamarinAndroidVS2019
1111
nuget restore XamarinAndroidVS2019.sln

0 commit comments

Comments
 (0)