Skip to content

Commit 387b0d9

Browse files
authored
update branch (#1059)
* update branch * comment
1 parent a1acccd commit 387b0d9

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

.github/workflows/test.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test
33
on:
44
push:
55
branches: # Array of patterns that match refs/heads
6-
- master # Push events on master branch
6+
- main # Push events on main branch
77
pull_request: # Specify a second event with pattern matching
88
env:
99
CI: true
@@ -33,7 +33,9 @@ jobs:
3333
- run: npm run examples
3434
- run: npm run benchmarks
3535
- name: Coveralls GitHub Action
36-
uses: coverallsapp/github-action@master
36+
# Per Actions best practices, SHA is the safest for third party actions
37+
# https://github.com/coverallsapp/github-action/releases/tag/v2.3.4
38+
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8
3739
with:
3840
github-token: ${{ secrets.GITHUB_TOKEN }}
3941
flag-name: run-unit-${{ matrix.node-version }}
@@ -44,7 +46,9 @@ jobs:
4446
runs-on: ubuntu-latest
4547
steps:
4648
- name: Coveralls Finished
47-
uses: coverallsapp/github-action@master
49+
# Per Actions best practices, SHA is the safest for third party actions
50+
# https://github.com/coverallsapp/github-action/releases/tag/v2.3.4
51+
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8
4852
with:
4953
github-token: ${{ secrets.github_token }}
5054
parallel-finished: true

README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
</p>
44

55
[![npm version](https://img.shields.io/npm/v/fast-csv.svg)](https://www.npmjs.org/package/fast-csv)
6-
[![Build Status](https://travis-ci.org/C2FO/fast-csv.svg?branch=master)](https://travis-ci.org/C2FO/fast-csv)
7-
[![Coverage Status](https://coveralls.io/repos/github/C2FO/fast-csv/badge.svg?branch=master)](https://coveralls.io/github/C2FO/fast-csv?branch=master)
6+
[![Coverage Status](https://coveralls.io/repos/github/C2FO/fast-csv/badge.svg?branch=master)](https://coveralls.io/github/C2FO/fast-csv?branch=main)
87
[![Known Vulnerabilities](https://snyk.io/test/github/C2FO/fast-csv/badge.svg?targetFile=package.json)](https://snyk.io/test/github/C2FO/fast-csv?targetFile=package.json)
98

109
# Fast-csv
@@ -27,18 +26,18 @@ See [installation docs](https://c2fo.github.io/fast-csv/docs/introduction/instal
2726
## Packages
2827

2928

30-
* `fast-csv` - One stop shop for all methods and options from `@fast-csv/format` and `@fast-csv/parse`. [Get Started!](https://c2fo.github.io/fast-csv/docs/introduction/getting-started)
29+
* `fast-csv` - One-stop shop for all methods and options from `@fast-csv/format` and `@fast-csv/parse`. [Get Started!](https://c2fo.github.io/fast-csv/docs/introduction/getting-started)
3130
* `@fast-csv/parse` - Parsing package, use this if you only need to parse files. [Get Started!](https://c2fo.github.io/fast-csv/docs/parsing/getting-started)
3231
* `@fast-csv/format` - Formatting package, use this if you only need to format files. [Get Started!](https://c2fo.github.io/fast-csv/docs/formatting/getting-started)
3332

3433
## License
3534

36-
MIT <https://github.com/C2FO/fast-csv/raw/master/LICENSE>
35+
MIT <https://github.com/C2FO/fast-csv/raw/main/LICENSE>
3736

3837
## Meta
3938
* Code: `git clone git://github.com/C2FO/fast-csv.git`
4039
* Website: <http://c2fo.com>
41-
* Twitter: [http://twitter.com/c2fo](http://twitter.com/c2fo) - 877.465.4045
40+
* X: [http://x.com/c2fo](http://twitter.com/c2fo) - 877.465.4045
4241

4342

4443

0 commit comments

Comments
 (0)