Skip to content
Open
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/_build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ jobs:
timeout-minutes: 25
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: ${{ inputs.dotnet_version }}

- name: Cache NuGet packages
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ inputs.service }}-${{ hashFiles('**/*.csproj', '**/*.props', '**/packages.lock.json') }}
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:

- name: Upload test results artifact
if: inputs.test_path != '' && (success() || failure())
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: test-results-${{ inputs.service }}
path: TestResults/
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:

- name: Upload Trivy SARIF to code scanning
if: always() && hashFiles('trivy.sarif') != ''
uses: github/codeql-action/upload-sarif@v3
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: trivy.sarif
category: trivy-${{ inputs.service }}
Expand All @@ -218,7 +218,7 @@ jobs:
# from the run page and used to reproduce the failure locally.
- name: Upload service build output on failure
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-output-${{ inputs.service }}
path: |
Expand All @@ -229,7 +229,7 @@ jobs:

- name: Upload test build output on failure
if: failure() && inputs.test_path != ''
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: test-build-output-${{ inputs.service }}
path: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
api_gateways: ${{ steps.changes.outputs.api_gateways }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Detect path changes
id: changes
Expand Down Expand Up @@ -231,15 +231,15 @@ jobs:
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'

- name: Cache NuGet packages
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-e2e-${{ hashFiles('**/*.csproj', '**/*.props') }}
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: e2e-test-results
path: TestResults/
Expand All @@ -297,7 +297,7 @@ jobs:

- name: Upload Docker logs on failure
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: docker-logs
path: docker-logs.txt
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality
Expand All @@ -55,6 +55,6 @@ jobs:
dotnet build "eshop-microservices.sln" --no-restore --configuration Release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/markdown-link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Restore lychee cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: .lycheecache
key: lychee-${{ github.sha }}
Expand Down
Loading