Skip to content

Commit ade732e

Browse files
Bump eslint from 8.3.0 to 8.6.0 (#75)
* Bump eslint from 8.3.0 to 8.6.0 Bumps [eslint](https://github.com/eslint/eslint) from 8.3.0 to 8.6.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](eslint/eslint@v8.3.0...v8.6.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Bump @vercel/ncc from 0.32.0 to 0.33.1 * Add more versions to functional tests CI * Fix CI Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fabasoad <[email protected]>
1 parent 8961f25 commit ade732e

9 files changed

+252
-294
lines changed

.github/workflows/functional-tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- 'main'
88
- 'bugfix/**'
9-
- 'dependabot/*'
9+
- 'dependabot/**'
1010
- 'feature/**'
1111

1212
env:
@@ -19,10 +19,10 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: ['ubuntu-latest', 'macos-latest']
22-
version: ['0.7.1', '0.8.0', '0.9.0', '0.10.0', '0.11.0', '0.12.0']
22+
version: ['0.7.1', '0.8.0', '0.9.0', '0.10.0', '0.11.0', '0.12.0', '0.13.0', '0.13.1', '0.14.0', '0.15.0', '0.15.1']
2323
runs-on: ${{ matrix.os }}
2424
steps:
25-
- uses: actions/checkout@v2.4.0
25+
- uses: actions/checkout@v2
2626
with:
2727
ref: ${{ github.ref }}
2828
- uses: ./

.github/workflows/security-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ on:
66
branches:
77
- 'main'
88
- 'bugfix/**'
9-
- 'dependabot/*'
9+
- 'dependabot/**'
1010
- 'feature/**'
1111

1212
jobs:
1313
snyk_tests:
1414
name: Snyk
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2.4.0
17+
- uses: actions/checkout@v2
1818
with:
1919
ref: ${{ github.ref }}
2020
- uses: snyk/actions/node@master

.github/workflows/unit-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- 'main'
88
- 'bugfix/**'
9-
- 'dependabot/*'
9+
- 'dependabot/**'
1010
- 'feature/**'
1111

1212
env:
@@ -18,7 +18,7 @@ jobs:
1818
timeout-minutes: 5
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v2.4.0
21+
- uses: actions/checkout@v2
2222
- name: Cache node_modules
2323
id: cache
2424
uses: actions/[email protected]

.github/workflows/yaml-lint.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
push:
66
paths:
77
- '**.yml'
8+
- '**.yaml'
89

910
jobs:
1011
lint:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This action sets up a [Mint](https://www.mint-lang.com/) programming language.
88

99
| Name | Required | Description | Default | Possible values |
1010
|---------|----------|-----------------------------------------------------------------------------------|----------|--------------------------|
11-
| version | No | Mint version that can be found [here](https://github.com/mint-lang/mint/releases) | `0.12.0` | `0.10.0`, `0.11.0`, etc. |
11+
| version | No | Mint version that can be found [here](https://github.com/mint-lang/mint/releases) | `0.15.1` | `0.13.1`, `0.14.0`, etc. |
1212

1313
## Example usage
1414

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
version:
1010
description: 'Mint version.'
1111
required: false
12-
default: 0.12.0
12+
default: 0.15.1
1313
runs:
1414
using: 'node12'
1515
main: 'dist/index.js'

dist/index.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-mint-action",
3-
"version": "1.0.16",
3+
"version": "1.0.17",
44
"description": "This action sets up a Mint programming language.",
55
"main": "dist/index.js",
66
"scripts": {
@@ -38,9 +38,9 @@
3838
"winston": "3.3.3"
3939
},
4040
"devDependencies": {
41-
"@vercel/ncc": "0.32.0",
41+
"@vercel/ncc": "0.33.1",
4242
"chai": "4.3.4",
43-
"eslint": "8.3.0",
43+
"eslint": "8.6.0",
4444
"eslint-config-google": "0.14.0",
4545
"git-branch-is": "4.0.0",
4646
"husky": "7.0.4",
@@ -49,7 +49,7 @@
4949
"mocha-param": "2.0.1",
5050
"nyc": "15.1.0",
5151
"sinon": "12.0.1",
52-
"snyk": "1.783.0"
52+
"snyk": "1.813.0"
5353
},
5454
"snyk": true
5555
}

0 commit comments

Comments
 (0)