8000 Merge pull request #76 from actions/master · Ditto190/Github-setup-python@614aa4a · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 614aa4a

Browse files
authored
Merge pull request actions#76 from actions/master
Update releases branch with latest changes
2 parents 53d19fa + 4ff1108 commit 614aa4a

File tree

6 files changed

+7798
-6360
lines changed

6 files changed

+7798
-6360
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/workflows/workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
operating-system: [ubuntu-latest, windows-latest]
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@master
12+
uses: actions/checkout@v2
1313

14-
- name: Set Node.js 10.x
15-
uses: actions/setup-node@master
14+
- name: Set Node.js 12.x
15+
uses: actions/setup-node@v1
1616
with:
17-
node-version: 10.x
17+
node-version: 12.x
1818

1919
- name: npm install
2020
run: npm install

__tests__/finder.test.ts

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,13 @@ import path = require('path');
55
const toolDir = path.join(
66
__dirname,
77
'runner',
8-
path.join(
9-
Math.random()
10-
.toString(36)
11-
.substring(7)
12-
),
8+
path.join(Math.random().toString(36).substring(7)),
139
'tools'
1410
);
1511
const tempDir = path.join(
1612
__dirname,
1713
'runner',
18-
path.join(
19-
Math.random()
20-
.toString(36)
21-
.substring(7)
22-
),
14+
path.join(Math.random().toString(36).substring(7)),
2315
'temp'
2416
);
2517

0 commit comments

Comments
 (0)
0