Skip to content

Commit

Permalink
run: git cococo sed -i -e 's|actions/checkout@v2|actions/checkout@v4|…
Browse files Browse the repository at this point in the history
…g' .github/workflows/comment-patch.yml .github/workflows/create-patch.yml .github/workflows/rubyonrails.yml .github/workflows/test.yml
  • Loading branch information
nishidayuya committed Oct 26, 2024
1 parent c7271f1 commit 98ec627
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/comment-patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- name: Install gems
run: sudo gem install faraday
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Comment Patch URL
run: ./.github/actions/comment_patch_url.rb
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
create-patch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create Patch
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
ports:
- 3306:3306
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Cache gems
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Cache gems
uses: actions/cache@v2
with:
Expand All @@ -79,7 +79,7 @@ jobs:
container:
image: ruby:${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Cache gems
uses: actions/cache@v2
with:
Expand Down

0 comments on commit 98ec627

Please sign in to comment.