From 3509809e09715d1ee8df8bbab0751dcedfbdc507 Mon Sep 17 00:00:00 2001 From: sunaoka Date: Thu, 8 Feb 2024 17:15:00 +0900 Subject: [PATCH] Update GitHub actions --- .github/workflows/generate.yaml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/generate.yaml b/.github/workflows/generate.yaml index 73dba77..78f4a55 100644 --- a/.github/workflows/generate.yaml +++ b/.github/workflows/generate.yaml @@ -16,7 +16,7 @@ jobs: php-version: '8.2' - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Generate run: make @@ -29,7 +29,7 @@ jobs: continue-on-error: true - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v6 with: commit-message: Update Error Code delete-branch: true diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e430a77..4d4b2c6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: tools: composer:v2 - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install dependencies run: composer install --quiet --no-ansi --prefer-dist --no-progress --no-interaction @@ -43,7 +43,7 @@ jobs: run: vendor/bin/phpunit --coverage-clover=coverage.xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.xml