Skip to content

Commit

Permalink
Update version of actions
Browse files Browse the repository at this point in the history
Update version of actions

Signed-off-by: YadongQi <yadong.qi@intel.com>
  • Loading branch information
YadongQi authored and sysopenci committed May 10, 2024
1 parent ba6ffa9 commit cc23996
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
os: [ubuntu-20.04, ubuntu-22.04]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: vm-manager
fetch-depth: 0
Expand All @@ -40,7 +40,7 @@ jobs:
debuild --preserve-env -b -uc -us --lintian-opts --profile debian
- name: artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vm-manager.${{ matrix.os }}.${{ github.run_id }}.${{ github.sha }}
path: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

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

- run: |
export CC=/usr/bin/clang
Expand All @@ -35,7 +35,7 @@ jobs:
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality
Expand All @@ -46,7 +46,7 @@ jobs:
cmake --build . --config Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
upload: False
output: sarif-results
Expand All @@ -61,12 +61,12 @@ jobs:
output: sarif-results/cpp-filtered.sarif

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

- name: artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sarif-results
path: sarif-results
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
os: [ubuntu-20.04]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: vm-manager
fetch-depth: 0
Expand All @@ -39,7 +39,7 @@ jobs:
cp $(realpath ../*.deb) vm-manager_${{ env.REL_VER }}.deb
- name: artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vm-manager.${{ matrix.os }}.${{ github.run_id }}.${{ github.sha }}
path: |
Expand All @@ -51,7 +51,7 @@ jobs:
*.changes
- name: Upload release assets
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: |
vm-manager/vm-manager_${{ env.REL_VER }}.deb

0 comments on commit cc23996

Please sign in to comment.