Skip to content

Commit

Permalink
Update GitHub action versions (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasNieto authored Oct 8, 2024
1 parent bc20360 commit ebd09b8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
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

0 comments on commit ebd09b8

Please sign in to comment.