diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8d6b39f..d882c3b 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -35,10 +35,7 @@ jobs: - name: Install dependencies run: | composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_4_LICENSE_KEY }}" --ansi - composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update - composer update ${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest --ansi - env: - COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }} + composer update ${{ matrix.dependency-version }} --prefer-dist --no-interaction --ansi --with="laravel/framework:${{ matrix.laravel }}" --with="orchestra/testbench:${{ matrix.testbench }}" - name: Execute tests run: composer test @@ -57,4 +54,4 @@ jobs: key: npm-${{ hashFiles('package.json') }}-node-20 - name: Compile assets - run: npm install && npm run nova:install && npm run prod + run: npm install && npm run nova:install && npm run prod \ No newline at end of file diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..ec3f87e --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "local>InteractionDesignFoundation/.github:renovate-config" + ] +}