Skip to content

Commit

Permalink
ci: use latest NodeJS
Browse files Browse the repository at this point in the history
run: git cococo sed -i -e 's|actions/checkout@v2|actions/checkout@v4|g' .github/workflows/comment-patch.yml .github/workflows/create-patch.yml .github/workflows/rubyonrails.yml .github/workflows/test.yml
run: git cococo sed -i -e 's|actions/upload-artifact@v2|actions/upload-artifact@v4|g' .github/workflows/comment-patch.yml .github/workflows/create-patch.yml .github/workflows/rubyonrails.yml .github/workflows/test.yml
  • Loading branch information
nishidayuya committed Nov 1, 2024
1 parent 075d266 commit 64ad8f7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/comment-patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,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
4 changes: 2 additions & 2 deletions .github/workflows/create-patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,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 All @@ -30,7 +30,7 @@ jobs:
env:
AUTHOR_EMAIL: ${{ github.event.head_commit.author.email }}
AUTHOR_NAME: ${{ github.event.head_commit.author.name }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: patch
path: ${{ steps.patch-creator.outputs.PATCH_FILE }}
2 changes: 1 addition & 1 deletion .github/workflows/rubyonrails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
uses: ruby/setup-ruby@v1.197.0
with:
ruby-version: 3.3
bundler-cache: true
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 64ad8f7

Please sign in to comment.