Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: CPP Lint
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
token: ${{ github.token }}
show-progress: false
Expand All @@ -28,7 +28,7 @@ jobs:
name: PlatformIO Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
token: ${{ secrets.GH_TOKEN || github.token }}
persist-credentials: true
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
name: Screenshot Regression Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
token: ${{ github.token }}
show-progress: false
Expand All @@ -74,10 +74,12 @@ jobs:
path: test/test_screenshots/output/

pio-build:
# Dependabot PRs cannot access private library repos; push CI still validates the full build.
if: ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'dependabot/') }}
name: PlatformIO Build
Comment thread
zjwhitehead marked this conversation as resolved.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
token: ${{ secrets.GH_TOKEN || github.token }}
persist-credentials: true
Expand Down