Skip to content

Instantly share code, notes, and snippets.

@Stephanvs
Created May 28, 2021 12:35
Show Gist options
  • Save Stephanvs/4fbd58ae4006d2c99717155b5440f75b to your computer and use it in GitHub Desktop.
Save Stephanvs/4fbd58ae4006d2c99717155b5440f75b to your computer and use it in GitHub Desktop.
name: NuKeeper Update NuGet Dependencies
on:
schedule:
- cron: 0 11 * * *
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_MULTILEVEL_LOOKUP: false
jobs:
update:
name: Update NuGet Packages
runs-on: ubuntu-latest
steps:
- name: install nukeeper
run: dotnet tool install nukeeper --global
- name: update packages
run: nukeeper repo $GITHUB_SERVER_URL/$GITHUB_REPOSITORY ${{ secrets.NUKEEPER_TOKEN }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment