Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
name: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keeping the moving tag here for consistency: this repo's workflows reference actions by tag throughout (and test.yml delegates to the org-shared ModuleCI.yml@main, a moving ref), so SHA-pinning this one step wouldn't change the effective supply-chain posture. Repo-wide SHA pinning (ideally with Dependabot keeping the pins fresh) is worth considering as its own hardening pass alongside the org .github repo — out of scope for this dependency-refresh PR.


Generated by Claude Code

- name: Publish
shell: pwsh
run: |
$apiKey = '${{ secrets.PSGALLERY_API_KEY }}' | ConvertTo-SecureString -AsPlainText -Force

Check warning on line 19 in .github/workflows/publish.yaml

View workflow job for this annotation

GitHub Actions / CI / Run Linters

Unknown word (PSGALLERY) Suggestions: (psaltery, spaller, psaltry, psalter, psalters)
$cred = [pscredential]::new('apikey', $apiKey)

Check warning on line 20 in .github/workflows/publish.yaml

View workflow job for this annotation

GitHub Actions / CI / Run Linters

Unknown word (apikey) Suggestions: (apikeys, aiken, alike, apiary, apices)

Check warning on line 20 in .github/workflows/publish.yaml

View workflow job for this annotation

GitHub Actions / CI / Run Linters

Unknown word (pscredential) Suggestions: (credential, prudential)
./build.ps1 -Task Publish -PSGalleryApiKey $cred -Bootstrap
2 changes: 1 addition & 1 deletion requirements.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
}
psake = '4.9.0'
PSScriptAnalyzer = '1.25.0'
InvokeBuild = '5.8.1'
InvokeBuild = '5.14.23'
platyPS = '0.14.2'
}
Loading