Skip to content

Commit f70fffb

Browse files
committed
Update CI workflows
1 parent 2cf6d18 commit f70fffb

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

.github/dependabot.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
# Check for updates to GitHub Actions every week
8+
interval: "weekly"

.github/workflows/linux.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ name: linux
22
on:
33
push:
44
branches:
5-
- '*'
5+
- 'master'
66
tags-ignore:
77
- '*'
88
pull_request:
99
jobs:
1010
perl:
1111
runs-on: ubuntu-latest
1212
strategy:
13+
fail-fast: true
1314
matrix:
1415
perl-version:
15-
- '5.36'
16+
- '5.38'
1617
# - '5.34'
1718
# - '5.32'
1819
# - '5.30'

.github/workflows/macos.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ name: macos
22
on:
33
push:
44
branches:
5-
- '*'
5+
- 'master'
66
tags-ignore:
77
- '*'
88
pull_request:
99
jobs:
1010
perl:
11-
runs-on: macOS-latest
11+
runs-on: macos-latest
1212
strategy:
13+
fail-fast: true
1314
matrix:
1415
perl-version:
15-
- '5.36'
16+
- '5.38'
1617
# - '5.34'
1718
# - '5.32'
1819
# - '5.30'

.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: windows
22
on:
33
push:
44
branches:
5-
- '*'
5+
- 'master'
66
tags-ignore:
77
- '*'
88
pull_request:

0 commit comments

Comments
 (0)