Skip to content

Commit 3997178

Browse files
authored
IT-538 - Update dependencies (#10)
1 parent d217002 commit 3997178

File tree

10 files changed

+630
-951
lines changed

10 files changed

+630
-951
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"SharedArrayBuffer": "readonly"
1111
},
1212
"parserOptions": {
13-
"ecmaVersion": 2018
13+
"ecmaVersion": 11
1414
},
1515
"rules": {
1616
}

.github/workflows/nightly.yml

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

33
on:
44
schedule:
5-
- cron: 0 0 * * 1
5+
- cron: 0 0 * * *
66

77
jobs:
88
nightly:
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515

1616
- name: test
1717
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616

1717
- name: test
1818
run: |

.github/workflows/review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515

1616
- name: test
1717
run: |

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Branch/Commit/Tag from source repository where to get updated GitHub Actions con
3030

3131
Is set to `true` if one configuration file is changed. Usage:
3232
```
33-
- uses: avides/actions-action-configuration-autoupdate@v1.1.0
33+
- uses: avides/actions-action-configuration-autoupdate@v1.3.0
3434
id: actions_action_configuration_autoupdate
3535
with:
3636
token: ${{ secrets.PAT }}
@@ -45,7 +45,7 @@ Is set to `true` if one configuration file is changed. Usage:
4545
## Example usage
4646
```
4747
- name: action-configuration-autoupdate
48-
uses: avides/action-configuration-autoupdate@v1.2.0
48+
uses: avides/actions-action-configuration-autoupdate@v1.3.0
4949
with:
5050
token: ${{ secrets.PAT }}
5151
actions-configuration-files: path/to/files/workflow1.yml,path/to/files/workflow2.yml
@@ -55,13 +55,13 @@ Is set to `true` if one configuration file is changed. Usage:
5555
## Example usage with auto-commit
5656
```
5757
- name: checkout
58-
uses: actions/checkout@v2
58+
uses: actions/checkout@v3
5959
with:
6060
ref: ${{ github.head_ref }}
6161
token: ${{ secrets.PAT }}
6262
6363
- name: action-configuration-autoupdate
64-
uses: avides/action-configuration-autoupdate@v1.2.0
64+
uses: avides/actions-action-configuration-autoupdate@v1.3.0
6565
with:
6666
token: ${{ secrets.PAT }}
6767
actions-configuration-files: path/to/files/workflow1.yml,path/to/files/workflow2.yml

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ outputs:
2121
updated:
2222
description: 'Is set to `true` if one configuration file is changed'
2323
runs:
24-
using: 'node12'
24+
using: 'node16'
2525
main: 'dist/index.js'

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)