Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/reusable_build_and_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Build and push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: docker/login-action@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable_run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:

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

- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Setup dotnet
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
${{ matrix.dotnet.version }}
Expand Down Expand Up @@ -63,14 +63,14 @@ jobs:
fi

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: dotnet-test-results-${{ matrix.dotnet.version }}
path: TestResults

- name: Publish test report
uses: dorny/test-reporter@v1
uses: dorny/test-reporter@v2
if: always()
with:
name: dotnet-test-results-${{ matrix.dotnet.version }}
Expand Down