diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml deleted file mode 100644 index 23f0eac..0000000 --- a/.github/actions/setup/action.yml +++ /dev/null @@ -1,9 +0,0 @@ -name: Setup -description: Set-up the dependencies of the project - -runs: - using: composite - steps: - - uses: ruby/setup-ruby@v1 - with: - bundler-cache: true diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 38004b1..93333be 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,11 +7,6 @@ updates: interval: "weekly" # Composite actions need to be updated separately - - package-ecosystem: "github-actions" - directory: "/.github/actions/setup" - schedule: - interval: "weekly" - - package-ecosystem: "github-actions" directory: "/.github/actions/code-coverage" schedule: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 20fab5e..073cd6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,8 +19,9 @@ jobs: - name: Checkout uses: actions/checkout@v6 - - name: Setup - uses: ./.github/actions/setup + - uses: ruby/setup-ruby@v1 + with: + bundler-cache: true - name: Run tests run: bundle exec fastlane test_all