summaryrefslogtreecommitdiff
path: root/.github/workflows/ubuntu.yml
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2020-05-11 18:37:08 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2020-05-12 17:15:22 +0900
commitb16acf8baa4899dc4e39246dcb89b351e4adfa13 (patch)
tree74ae38cc4d7c2d73941d79c6a3c5a5d1f0a494bb /.github/workflows/ubuntu.yml
parentee518cf077b856fddea7dfae5d85f3c3117dd616 (diff)
.github: use actions/checkout@v2 again
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3100
Diffstat (limited to '.github/workflows/ubuntu.yml')
-rw-r--r--.github/workflows/ubuntu.yml15
1 files changed, 4 insertions, 11 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 27ce6ae682..0935277d31 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -24,17 +24,10 @@ jobs:
set -x
sudo apt-get update -q || :
sudo apt-get install --no-install-recommends -q -y build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev bison autoconf ruby
- # Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
- - name: Checkout ruby
- run: |
- git clone --single-branch --shallow-since=yesterday --branch=${GITHUB_REF#refs/heads/} https://github.com/${{ github.repository }} src
- git -C src reset --hard "$GITHUB_SHA"
- if: github.event_name == 'push'
- - name: Checkout a pull request
- run: |
- git clone --single-branch --depth=50 --branch=${{ github.event.pull_request.head.ref }} https://github.com/${{ github.event.pull_request.head.repo.full_name }} src
- git -C src reset --hard ${{ github.event.pull_request.head.sha }}
- if: github.event_name == 'pull_request'
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 128
+ path: src
- run: ./src/tool/actions-commit-info.sh
id: commit_info
- name: Fixed world writable dirs