Skip to content

Commit 779d8e9

Browse files
committed
Fix GitHub workflow
1 parent 973b71f commit 779d8e9

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

.github/actions/set-up-bashcov/action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@ inputs:
66
runs:
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

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
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

99
permissions: 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

.github/workflows/deps.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ name: Update Nix dependencies
22

33
on:
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

98
jobs:
@@ -26,7 +25,7 @@ jobs:
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

0 commit comments

Comments
 (0)