File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ concurrency:
18
18
jobs :
19
19
test :
20
20
name : ' Ruby: ${{ matrix.ruby }}, Rails: ${{ matrix.env.RAILS_VERSION }}'
21
- runs-on : ubuntu-20.04
21
+ runs-on : ' ubuntu-latest '
22
22
strategy :
23
23
fail-fast : false
24
24
matrix :
42
42
43
43
legacy :
44
44
name : Legacy Ruby Builds (${{ matrix.container.version }})
45
- runs-on : ubuntu-20.04
45
+ runs-on : ' ubuntu-latest '
46
46
container :
47
47
image : ${{ matrix.container.tag }}
48
48
options : ${{ matrix.container.options || '--add-host github-complains-if-this-is-empty.com:127.0.0.1' }}
63
63
env :
64
64
LEGACY_CI : true
65
65
steps :
66
- - uses : actions/checkout@v3
66
+ - run : git config --global --add safe.directory $GITHUB_WORKSPACE
67
+ - run : git init $GITHUB_WORKSPACE
68
+ - run : git remote add origin https://github.com/rspec/rspec-collection_matchers
69
+ - run : git config --local gc.auto 0
70
+ - run : git fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +$GITHUB_SHA:$GITHUB_REF
71
+ - run : git checkout --progress --force $GITHUB_REF
67
72
- run : script/legacy_setup.sh
68
- - run : ${{ matrix.container.post }}
69
73
- run : script/run_build
You can’t perform that action at this time.
0 commit comments