Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit 3b673ee

Browse files
authored
Merge pull request #1555 from rspec/update-ci-build-scripts-2023-09-11-for-main
Updates from rspec-dev (2023-09-11)
2 parents d916211 + d05d3f8 commit 3b673ee

12 files changed

Lines changed: 15 additions & 15 deletions

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2023-06-26T13:27:29+01:00 from the rspec-dev repo.
1+
# This file was generated on 2023-09-11T12:14:10+01:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
version: 2

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2023-06-26T13:27:29+01:00 from the rspec-dev repo.
1+
# This file was generated on 2023-09-11T12:14:10+01:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
name: RSpec CI
@@ -25,7 +25,7 @@ jobs:
2525
name: Rubocop
2626
runs-on: 'ubuntu-20.04'
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
- uses: ruby/setup-ruby@v1
3030
with:
3131
ruby-version: '3.0'
@@ -72,7 +72,7 @@ jobs:
7272
continue-on-error: ${{ matrix.allow_failure || endsWith(matrix.ruby, 'head') }}
7373
env: ${{ matrix.env }}
7474
steps:
75-
- uses: actions/checkout@v3
75+
- uses: actions/checkout@v4
7676
- uses: ruby/setup-ruby@v1
7777
with:
7878
bundler: ${{ matrix.bundler || '2.2.22' }}
@@ -144,7 +144,7 @@ jobs:
144144
- 2.2
145145
fail-fast: false
146146
steps:
147-
- uses: actions/checkout@v3
147+
- uses: actions/checkout@v4
148148
- uses: ruby/setup-ruby@v1
149149
with:
150150
bundler: '2.2.22'

.rubocop_rspec_base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2023-06-26T13:27:29+01:00 from the rspec-dev repo.
1+
# This file was generated on 2023-09-11T12:14:10+01:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
# This file contains defaults for RSpec projects. Individual projects

script/ci_functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2023-06-26T13:27:29+01:00 from the rspec-dev repo.
1+
# This file was generated on 2023-09-11T12:14:10+01:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
# Taken from:

script/clone_all_rspec_repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file was generated on 2023-06-26T13:27:29+01:00 from the rspec-dev repo.
2+
# This file was generated on 2023-09-11T12:14:10+01:00 from the rspec-dev repo.
33
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
44

55
set -e

script/cucumber.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file was generated on 2023-06-26T13:27:29+01:00 from the rspec-dev repo.
2+
# This file was generated on 2023-09-11T12:14:10+01:00 from the rspec-dev repo.
33
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
44

55
set -e

script/functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2023-06-26T13:27:29+01:00 from the rspec-dev repo.
1+
# This file was generated on 2023-09-11T12:14:10+01:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

script/legacy_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file was generated on 2023-06-26T13:27:29+01:00 from the rspec-dev repo.
2+
# This file was generated on 2023-09-11T12:14:10+01:00 from the rspec-dev repo.
33
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
44

55
set -e

script/predicate_functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2023-06-26T13:27:29+01:00 from the rspec-dev repo.
1+
# This file was generated on 2023-09-11T12:14:10+01:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
function is_mri {

script/run_build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file was generated on 2023-06-26T13:27:29+01:00 from the rspec-dev repo.
2+
# This file was generated on 2023-09-11T12:14:10+01:00 from the rspec-dev repo.
33
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
44

55
set -e

0 commit comments

Comments
 (0)