Skip to content

Commit 6d1269c

Browse files
Bump @actions/core from 1.9.1 to 1.10.0 (#67)
* Bump snyk from 1.852.0 to 1.996.0 Bumps [snyk](https://github.com/snyk/snyk) from 1.852.0 to 1.996.0. - [Release notes](https://github.com/snyk/snyk/releases) - [Commits](snyk/cli@v1.852.0...v1.996.0) --- updated-dependencies: - dependency-name: snyk dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]> * Bump @actions/core from 1.9.1 to 1.10.0 * Add pre-commit badge Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fabasoad <[email protected]>
1 parent 7f06e58 commit 6d1269c

24 files changed

+631
-641
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
"require-jsdoc": "off",
3333
"semi": "off"
3434
}
35-
}
35+
}

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,32 @@ assignees: fabasoad
77

88
---
99

10-
**Describe the bug**
10+
#### Describe the bug
11+
1112
A clear and concise description of what the bug is.
1213

13-
**Steps to Reproduce**
14+
#### Steps to Reproduce
15+
1416
1. Run '...'
1517
2. See error
1618

17-
**Expected behavior**
19+
#### Expected behavior
20+
1821
A clear and concise description of what you expected to happen.
1922

20-
**Actual behavior**
23+
#### Actual behavior
24+
2125
A clear and concise description of what is happening now.
2226

23-
**Screenshots**
27+
#### Screenshots
28+
2429
If applicable, add screenshots to help explain your problem.
2530

26-
**Technical information (please complete the following information):**
27-
- OS: [e.g. Windows 10 Enterprise v.1909 (OS Build 18363.720)]
28-
- `setup-brainfuck-action` version [e.g. 1.0.2]
31+
#### Technical information (please complete the following information)
32+
33+
- OS: [e.g. Windows 10 Enterprise v.1909 (OS Build 18363.720)]
34+
- `setup-brainfuck-action` version [e.g. 1.0.2]
35+
36+
#### Additional context
2937

30-
**Additional context**
3138
Add any other context about the problem here.

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "monthly"
8+
reviewers:
9+
- "fabasoad"
10+
labels:
11+
- "dependencies"

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ Please check the type of change your PR introduces:
4848
## Other information
4949

5050
<!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
51-
<!-- This document was adapted from the open-source [appium/appium](https://github.com/appium/appium/blob/master/.github/PULL_REQUEST_TEMPLATE.md) repository. -->
51+
<!-- This document was adapted from the open-source [appium/appium](https://github.com/appium/appium/blob/master/.github/PULL_REQUEST_TEMPLATE.md) repository. -->

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Release
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
with:
1616
fetch-depth: 0
1717
- name: Get latest release tag

.github/workflows/functional-tests.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,8 @@ on:
55
push:
66
branches:
77
- 'main'
8-
- 'bugfix/**'
9-
- 'dependabot/**'
10-
- 'feature/**'
11-
12-
env:
13-
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
8+
- 'fix-*'
9+
- 'feature-*'
1410

1511
jobs:
1612
functional_tests:
@@ -23,7 +19,7 @@ jobs:
2319
fail-fast: false
2420
runs-on: ${{ matrix.os }}
2521
steps:
26-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2723
with:
2824
ref: ${{ github.ref }}
2925
- uses: ./

.github/workflows/security-tests.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,10 @@ on:
55
push:
66
branches:
77
- 'main'
8-
- 'bugfix/**'
9-
- 'dependabot/**'
10-
- 'feature/**'
8+
- 'fix-*'
9+
- 'feature-*'
1110

1211
jobs:
13-
snyk_tests:
14-
name: Snyk
15-
runs-on: ubuntu-latest
16-
steps:
17-
- uses: actions/checkout@v2
18-
with:
19-
ref: ${{ github.ref }}
20-
- uses: snyk/actions/node@master
21-
env:
22-
SNYK_TOKEN: ${{ secrets.SNYK_API_TOKEN }}
2312
codeql_tests:
2413
name: CodeQL
2514
runs-on: ubuntu-latest

.github/workflows/unit-tests.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,22 @@ on:
55
push:
66
branches:
77
- 'main'
8-
- 'bugfix/**'
9-
- 'dependabot/**'
10-
- 'feature/**'
11-
12-
env:
13-
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
8+
- 'fix-*'
9+
- 'feature-*'
1410

1511
jobs:
1612
unit_tests:
1713
name: Lint and Test
1814
timeout-minutes: 5
1915
runs-on: ubuntu-latest
2016
steps:
21-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
2218
- name: Cache node_modules
2319
id: cache
24-
uses: actions/cache@v2.1.7
20+
uses: actions/cache@v2
2521
with:
2622
path: '**/node_modules'
27-
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
23+
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
2824
restore-keys: |
2925
${{ runner.os }}-yarn-
3026
- name: Compile

.github/workflows/yaml-lint.yml

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

.husky/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)