Skip to content

Commit fe504c5

Browse files
committed
Bump version to 1.9.0
1 parent 61d755b commit fe504c5

36 files changed

+532
-538
lines changed

.eslintrc.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"env": { "node": true, "jest": true },
33
"parser": "@typescript-eslint/parser",
4-
"parserOptions": { "ecmaVersion": 2020, "sourceType": "module" },
4+
"parserOptions": { "ecmaVersion": 2019, "sourceType": "module" },
55
"extends": [
66
"eslint:recommended",
77
"plugin:@typescript-eslint/eslint-recommended",
@@ -12,11 +12,5 @@
1212
"plugin:prettier/recommended",
1313
"prettier/@typescript-eslint"
1414
],
15-
"plugins": ["@typescript-eslint", "jest"],
16-
"rules": {
17-
"camelcase": "off",
18-
"require-atomic-updates": "off",
19-
"@typescript-eslint/ban-ts-ignore": "off",
20-
"@typescript-eslint/camelcase": "off"
21-
}
15+
"plugins": ["@typescript-eslint", "jest"]
2216
}

.github/FUNDING.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@
22

33
github: shivammathur
44
community_bridge: setup-php
5-
issuehunt: shivammathur
65
patreon: shivammathur
7-
liberapay: shivammathur
86
custom: https://www.paypal.me/shivammathur

.github/PULL_REQUEST_TEMPLATE/FIX.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE/IMPROVEMENT.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE/NEW_FEATURE.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/SECURITY.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
The following versions of this project are supported for security updates.
6+
7+
| Version | Supported |
8+
| ------- | ------------------ |
9+
| 1.9.x | :white_check_mark: |
10+
| 2.3.x | :white_check_mark: |
11+
12+
## Supported PHP Versions
13+
14+
This security policy only applies to the latest patches of the following PHP versions.
15+
16+
| Version | Supported |
17+
| ------- | ------------------ |
18+
| 7.2 | :white_check_mark: |
19+
| 7.3 | :white_check_mark: |
20+
| 7.4 | :white_check_mark: |
21+
| 8.0 | :white_check_mark: |
22+
23+
## Reporting a Vulnerability
24+
25+
If you have found any issues that might have security implications in the versions supported, please send a report privately to [[email protected]](mailto:[email protected]).
26+
Do not report security reports publicly.
27+
28+
## Tidelift
29+
30+
If you use this GitHub Action through a Tidelift subscription, please refer to [https://tidelift.com/security](https://tidelift.com/security).

.github/workflows/experimental-workflow.yml

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -19,34 +19,12 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
operating-system: [ubuntu-latest, windows-latest, macos-latest]
22+
operating-system: [ubuntu-20.04, ubuntu-18.04, ubuntu-16.04, windows-latest, macos-latest]
2323
php-versions: ['8.0']
2424
steps:
2525
- name: Checkout
2626
uses: actions/checkout@v2
2727

28-
- name: Setup Node.js 12.x
29-
uses: actions/setup-node@v1
30-
with:
31-
node-version: 12.x
32-
33-
- name: Install dependencies
34-
run: npm install
35-
36-
- name: Prettier Format Check
37-
run: npm run format-check
38-
39-
- name: ESLint Check
40-
run: npm run lint
41-
42-
- name: Run tests
43-
run: npm test
44-
45-
- name: Send Coverage
46-
continue-on-error: true
47-
timeout-minutes: 1
48-
run: curl -s https://codecov.io/bash | bash -s -- -t ${{secrets.CODECOV_TOKEN}} -f coverage/clover.xml -n github-actions-codecov-${{ matrix.operating-system }}-php${{ matrix.php-versions }}
49-
5028
- name: Setup PHP with extensions and custom config
5129
run: node dist/index.js
5230
env:

.github/workflows/workflow.yml renamed to .github/workflows/main-workflow.yml

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -19,34 +19,12 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
operating-system: [ubuntu-latest, windows-latest, macos-latest]
22+
operating-system: [ubuntu-20.04, ubuntu-18.04, ubuntu-16.04, windows-latest, macos-latest]
2323
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4']
2424
steps:
2525
- name: Checkout
2626
uses: actions/checkout@v2
2727

28-
- name: Setup Node.js 12.x
29-
uses: actions/setup-node@v1
30-
with:
31-
node-version: 12.x
32-
33-
- name: Install dependencies
34-
run: npm install
35-
36-
- name: Prettier Format Check
37-
run: npm run format-check
38-
39-
- name: ESLint Check
40-
run: npm run lint
41-
42-
- name: Run tests
43-
run: npm test
44-
45-
- name: Send Coverage
46-
continue-on-error: true
47-
timeout-minutes: 1
48-
run: curl -s https://codecov.io/bash | bash -s -- -t ${{secrets.CODECOV_TOKEN}} -f coverage/clover.xml -n github-actions-codecov-${{ matrix.operating-system }}-php${{ matrix.php-versions }}
49-
5028
- name: Setup PHP with extensions and custom config
5129
run: node dist/index.js
5230
env:

.github/workflows/node-workflow.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Node workflow
2+
on:
3+
pull_request:
4+
branches:
5+
- releases/v1
6+
paths-ignore:
7+
- '**.md'
8+
- 'examples/**'
9+
push:
10+
branches:
11+
- releases/v1
12+
paths-ignore:
13+
- '**.md'
14+
- 'examples/**'
15+
jobs:
16+
run:
17+
name: Run
18+
runs-on: ${{ matrix.operating-system }}
19+
strategy:
20+
fail-fast: false
21+
matrix:
22+
operating-system: [ubuntu-latest, windows-latest, macos-latest]
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v2
26+
27+
- name: Setup Node.js 12.x
28+
uses: actions/setup-node@v1
29+
with:
30+
node-version: 12.x
31+
32+
- name: Install dependencies
33+
run: npm install
34+
35+
- name: Prettier Format Check
36+
run: npm run format-check
37+
38+
- name: ESLint Check
39+
run: npm run lint
40+
41+
- name: Run tests
42+
run: npm test
43+
44+
- name: Send Coverage
45+
continue-on-error: true
46+
timeout-minutes: 1
47+
run: curl -s https://codecov.io/bash | bash -s -- -t ${{secrets.CODECOV_TOKEN}} -f coverage/clover.xml -n github-actions-codecov-${{ matrix.operating-system }}

0 commit comments

Comments
 (0)