Skip to content

Bump actions/checkout from 4 to 5 #17

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #17

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
buildAndTest:
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
- name: Build
run: ./build.sh
- name: Run tests
run: ./run_tests.sh
auto-merge:
needs: buildAndTest
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v5
- name: auto-merge
if: |
github.actor == 'dependabot[bot]' &&
github.event_name == 'pull_request'
run: |
./merge_dependabot.sh
env:
PR_URL: ${{github.event.pull_request.html_url}}
# this secret needs to be in the settings.secrets.dependabot
GITHUB_TOKEN: ${{secrets.GH_ACTION_TOKEN}}