Skip to content

Commit

Permalink
chore(deps): update pipeline dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Dec 18, 2023
1 parent dda10a9 commit 84cc10c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ jobs:
pack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x

- run: ./build.ps1 --target=pack
shell: pwsh

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: output-${{ github.run_number }}-${{ github.run_attempt }}
path: .output/
Expand All @@ -37,16 +37,16 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: output-${{ github.run_number }}-${{ github.run_attempt }}
path: .output/
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ jobs:
pack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x

- run: ./build.ps1 --target=pack
shell: pwsh

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: output-${{ github.run_number }}-${{ github.run_attempt }}
path: .output/
Expand All @@ -33,16 +33,16 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: output-${{ github.run_number }}-${{ github.run_attempt }}
path: .output/
Expand All @@ -54,15 +54,15 @@ jobs:
runs-on: ubuntu-latest
needs: [test]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: output-${{ github.run_number }}-${{ github.run_attempt }}
path: .output/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use Node.js 18
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:

steps:
- name: Checkout all commits and tags
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ github.event_name == 'pull_request' }}
with:
fetch-depth: 0

- name: Checkout single commit
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ github.event_name != 'pull_request' }}

- name: Pull request scan
Expand All @@ -39,14 +39,14 @@ jobs:

- name: Save report as pipeline artifact
if: ${{ github.event_name != 'pull_request' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: report.sarif
path: report.sarif

- name: Publish code scanning alerts
if: ${{ github.event_name != 'pull_request' }}
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: report.sarif
category: semgrep

0 comments on commit 84cc10c

Please sign in to comment.