File tree Expand file tree Collapse file tree 3 files changed +16
-10
lines changed
Expand file tree Collapse file tree 3 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,16 @@ inputs:
66runs :
77 using : composite
88 steps :
9+ - name : Display gcc version
10+ id : gcc-version
11+ shell : bash
12+ run : |
13+ gcc -v
914 - name : Display Ruby version
1015 id : ruby-version
1116 shell : bash
1217 run : |
13- ruby -v || :
18+ ruby -v
1419 - name : Install Ruby gem dependencies
1520 id : bundle-install
1621 shell : bash
Original file line number Diff line number Diff line change 44 push :
55 pull_request :
66 schedule :
7- - cron : " 0 0 1 * *" # first day of every month
7+ - cron : " 0 0 * * 0 " # run weekly on Sundays
88
99permissions : read-all
1010
@@ -44,14 +44,16 @@ jobs:
4444 spec :
4545 runs-on : ubuntu-latest
4646 container : ruby:latest
47+ fail-fast : false
4748 strategy :
4849 matrix :
4950 bash-version :
50- - ' 5.2'
51- - ' 5.1'
52- - ' 5.0'
53- - ' 4.4'
54- - ' 4.3'
51+ # - "5.3"
52+ - " 5.2"
53+ - " 5.1"
54+ # - "5.0"
55+ # - "4.4"
56+ # - "4.3"
5557 steps :
5658 - uses : actions/checkout@v4
5759 - uses : ./.github/actions/set-up-bashcov
Original file line number Diff line number Diff line change @@ -2,8 +2,7 @@ name: Update Nix dependencies
22
33on :
44 schedule :
5- # Sunday and Wednesday
6- - cron : ' 42 4 * * 0,3'
5+ - cron : " 0 0 * * 3" # run weekly on Wednesdays
76 workflow_dispatch :
87
98jobs :
2625 uses : peter-evans/create-pull-request@v5
2726 with :
2827 branch : create-pull-request/update-nix-deps
29- title : ' [create-pull-request] Update Nix dependencies'
28+ title : " [create-pull-request] Update Nix dependencies"
3029 body : |
3130 Update Nix dependencies in `Gemfile.nix.lock` and `gemset.nix`.
3231
You can’t perform that action at this time.
0 commit comments