Skip to content

Commit

Permalink
Update GitHub action versions (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasNieto authored Oct 7, 2024
1 parent 5c9d7c8 commit 1aa8ce5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: .NET Build
run: dotnet build --configuration Release
Expand All @@ -31,7 +31,7 @@ jobs:
Copy-Item @settings
- name: Upload module
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: module
path: ./module/
Expand All @@ -41,10 +41,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.Programs\
Expand All @@ -64,10 +64,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: module
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
Set-AuthenticodeSignature @config
- name: Upload module
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: module-signed
path: ./module/
Expand All @@ -112,7 +112,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.Programs'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"

0 comments on commit 1aa8ce5

Please sign in to comment.