diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index d2ba3e5..e0a047e 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -9,23 +9,23 @@ on: jobs: build: name: "Checking the package: testing and linting" - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: php: ["8.2", "8.3"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4.2.2 - name: Setup PHP - uses: shivammathur/setup-php@v2 + uses: shivammathur/setup-php@2.31.1 with: php-version: ${{ matrix.php }} coverage: none - name: Cache composer dependencies - uses: actions/cache@v2 + uses: actions/cache@v4.2.0 with: path: vendor key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/renovate.json5 b/renovate.json5 new file mode 100644 index 0000000..e8180a4 --- /dev/null +++ b/renovate.json5 @@ -0,0 +1,9 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "github>blumilksoftware/infrastructure//renovate/presets/default.json5", + ], + "additionalReviewers": [ + "Blusia", // Agnieszka Rudek + ], +}