ci: Version the setup-* actions used for testing

This commit is contained in:
Matan Kushner 2019-10-25 20:44:20 +09:00
parent d691e0a394
commit e81e1b51db
No known key found for this signature in database
GPG Key ID: 4B98C3A8949CA8A4
1 changed files with 5 additions and 5 deletions

View File

@ -100,27 +100,27 @@ jobs:
override: true override: true
# Install Node.js at a fixed version # Install Node.js at a fixed version
- uses: actions/setup-node@master - uses: actions/setup-node@v1
with: with:
node-version: "12.0.0" node-version: "12.0.0"
# Install Golang at a fixed version # Install Golang at a fixed version
- uses: actions/setup-go@master - uses: actions/setup-go@v1
with: with:
go-version: "1.12.1" go-version: "1.12.1"
# Install Ruby at a fixed version # Install Ruby at a fixed version
- uses: actions/setup-ruby@master - uses: actions/setup-ruby@v1
with: with:
ruby-version: "2.6.3" ruby-version: "2.6.3"
# Install Python at a fixed version # Install Python at a fixed version
- uses: actions/setup-python@master - uses: actions/setup-python@v1
with: with:
python-version: "3.7.4" python-version: "3.7.4"
# Install dotnet at a fixed version # Install dotnet at a fixed version
- uses: actions/setup-dotnet@master - uses: actions/setup-dotnet@v1
with: with:
dotnet-version: "2.2.402" dotnet-version: "2.2.402"