Update dependencies (round 2) #590
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) .NET Foundation and Contributors | |
# See LICENSE file in the project root for full license information. | |
# This workflow will periodically check .NET nanoFramework dependencies and updates them in the repository it's running. | |
name: Update dependencies (round 2) | |
on: | |
schedule: | |
# At 00:15 UTC . | |
# Set 15 min apart from previous round to allow enough time for any changes to propagate. | |
- cron: '15 00 * * Wed,Fri' | |
repository_dispatch: | |
types: update-dependencies | |
workflow_dispatch: | |
jobs: | |
update-nuget-dependencies: | |
name: nanoFramework | |
uses: nanoframework/nf-tools/.github/workflows/update-dependencies.yml@main | |
secrets: inherit | |
with: | |
timeout-minutes: 180 # Non default as IoT devices has lots of solutions to update! | |
workingDirectory: devices | |
branchToPr: 'develop' | |
solutionsToCheck: | | |
ShiftRegister.sln | |
Card.sln |