Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GitHub action versions #8

Merged
merged 1 commit into from
Oct 8, 2024
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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Upload module
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: module
path: ./src/
Expand All @@ -32,10 +32,10 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download module
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: module
path: C:\Users\runneradmin\Documents\PowerShell\Modules\AnyPackage.ModuleFast\
Expand All @@ -55,7 +55,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Import certificate
env:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
Set-AuthenticodeSignature @config

- name: Upload module
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: module-signed
path: ./src/
Expand All @@ -97,7 +97,7 @@ jobs:
steps:

- name: Download module
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: module-signed
path: '~/.local/share/powershell/Modules/AnyPackage.ModuleFast'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-powershell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install AnyPackage and ConvertToSARIF
run: Install-Module AnyPackage, ConvertToSARIF -Force -AllowClobber
Expand All @@ -35,6 +35,6 @@ jobs:
Invoke-ScriptAnalyzer -Path . -Recurse | ConvertTo-SARIF -FilePath results.sarif

- name: Upload SARIF results file
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif