Dependencies #148
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
# | |
# Automated dependency updates | |
# | |
# NOTES: | |
# This automatically bumps PowerShell dependency versions. | |
name: Dependencies | |
on: | |
schedule: | |
- cron: '50 1 * * 1' # At 01:50 AM, on Monday each week | |
workflow_dispatch: | |
env: | |
WORKING_BRANCH: dependencies/powershell-bump | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
jobs: | |
dependencies: | |
name: Bump dependencies | |
runs-on: ubuntu-latest | |
if: github.repository == 'microsoft/PSRule-pipelines' | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure | |
run: | | |
git config user.name github-actions | |
git config user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
- name: Get working branch | |
run: | | |
git checkout -B ${{ env.WORKING_BRANCH }} --force | |
- name: Check dependencies | |
run: | | |
Import-Module ./scripts/dependencies.psm1; | |
Update-Dependencies -Path ./modules.json; | |
shell: pwsh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |