Skip to content

Commit

Permalink
Merge pull request #74 from everyleaf/update-github-workflows-version
Browse files Browse the repository at this point in the history
サンプルコードに用いているGithub Actionsのバージョンを見直す
  • Loading branch information
akira888 authored Jul 23, 2024
2 parents 9401b5b + 4cfdeff commit 2c182b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions github_actions/.github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -22,7 +22,7 @@ jobs:
run: bundle exec rubocop
- name: Notify Slack when job failed
if: ${{ failure() }}
uses: slackapi/slack-github-action@v1.18.0
uses: slackapi/slack-github-action@v1.26.0
with:
payload: |
{
Expand Down
4 changes: 2 additions & 2 deletions github_actions/.github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -42,7 +42,7 @@ jobs:
run: bundle exec rspec
- name: Notify Slack when job failed
if: ${{ failure() }}
uses: slackapi/slack-github-action@v1.18.0
uses: slackapi/slack-github-action@v1.26.0
with:
payload: |
{
Expand Down

0 comments on commit 2c182b3

Please sign in to comment.