Skip to content

Commit 6991a84

Browse files
authored
update GitHub actions (#10)
- update GitHub actions - give internal variables descriptive names - minor edits
1 parent 807d53c commit 6991a84

File tree

14 files changed

+234
-155
lines changed

14 files changed

+234
-155
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# These are supported funding model platforms
22

3-
github: RobTillaart
3+
github: RobTillaart
4+
custom: "https://www.paypal.me/robtillaart"
45

.github/workflows/arduino-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
21
name: Arduino-lint
32

43
on: [push, pull_request]
54
jobs:
65
lint:
76
runs-on: ubuntu-latest
7+
timeout-minutes: 5
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
- uses: arduino/arduino-lint-action@v1
1111
with:
1212
library-manager: update

.github/workflows/arduino_test_runner.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
---
21
name: Arduino CI
32

43
on: [push, pull_request]
54

65
jobs:
76
runTest:
87
runs-on: ubuntu-latest
8+
timeout-minutes: 20
99

1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- uses: ruby/setup-ruby@v1
1313
with:
1414
ruby-version: 2.6

.github/workflows/jsoncheck.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ on:
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
12+
timeout-minutes: 5
1213
steps:
13-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1415
- name: json-syntax-check
15-
uses: limitusus/json-syntax-check@v1
16+
uses: limitusus/json-syntax-check@v2
1617
with:
1718
pattern: "\\.json$"
1819

0 commit comments

Comments
 (0)