Skip to content

Commit d6dad9c

Browse files
committed
Update GH actions
* remove schedule as it eventually disables the actions * bump some versions * tidy YAML
1 parent ba4bd85 commit d6dad9c

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

.github/workflows/compile.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1+
---
12
on:
23
push:
34
branches:
4-
- "*"
5+
- 'master'
56
pull_request:
67
branches:
7-
- "*"
8-
schedule:
9-
- cron: "15 4 * * 0" # Every Sunday morning
8+
- '*'
109
workflow_dispatch:
1110

1211
name: bash
@@ -16,9 +15,9 @@ jobs:
1615
name: Test Bash Scripts
1716
runs-on: ubuntu-latest
1817
container:
19-
image: perldocker/perl-tester:5.30 # we need prove
18+
image: perldocker/perl-tester:5.36 # we need prove
2019
steps:
21-
- uses: actions/checkout@master
20+
- uses: actions/checkout@v3
2221
- name: install Bats
2322
run: >
2423
cd /tmp &&

.github/workflows/shellcheck.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1+
---
12
on:
23
push:
34
branches:
4-
- "*"
5+
- 'master'
56
pull_request:
67
branches:
7-
- "*"
8-
schedule:
9-
- cron: "15 4 * * 0" # Every Sunday morning
8+
- '*'
109

11-
name: Lint Scripts
10+
name: shellcheck
1211

1312
jobs:
1413
shellcheck:
1514
name: Shellcheck
1615
runs-on: ubuntu-latest
1716
steps:
18-
- uses: actions/checkout@master
17+
- uses: actions/checkout@v3
1918
- name: Run ShellCheck
2019
uses: ludeeus/action-shellcheck@master

0 commit comments

Comments
 (0)