Skip to content

Commit

Permalink
Update actions/checkout to v4 (#107)
Browse files Browse the repository at this point in the history
* Update actions/checkout to v4

* update CHANGELOG.md

* fix .github/workflows/check_changelog.yml
  • Loading branch information
smasato authored Jul 22, 2024
1 parent 293fd38 commit 83b1d21
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/check_changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check that CHANGELOG is touched
run: |
cat $GITHUB_EVENT_PATH | jq .pull_request.title | grep -i '\[\(\(changelog skip\)\|\(ci skip\)\)\]' || git diff remotes/origin/${{ github.base_ref }} --name-only | grep CHANGELOG.md
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- head
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Main

- Migrate CI from Travis CI to GitHub Actions (#101)
- Update actions/checkout to v4 (#107)

## 0.3.1

Expand Down

0 comments on commit 83b1d21

Please sign in to comment.