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/dotnet-library-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
artifactory-password: ${{ secrets.ARTIFACTORY_PASSWORD }}

- name: Test Results
uses: dorny/test-reporter@v1
uses: dorny/test-reporter@v3
if: always()
with:
name: Tests (Linux)
Expand All @@ -150,7 +150,7 @@ jobs:

- name: Upload SBOM
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: sbom
path: bom.json
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
certificate-password: ${{ secrets.CODE_SIGN_PFX_PASS }}

- name: Upload Packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: nuget-packages
path: |
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
test-verbosity: ${{ inputs.windows-test-verbosity || 'detailed'}}

- name: Test Results
uses: dorny/test-reporter@v1
uses: dorny/test-reporter@v3
if: always()
with:
name: Tests (Windows)
Expand All @@ -255,12 +255,12 @@ jobs:
!startsWith(github.ref, 'refs/heads/dependabot/')
runs-on: windows-latest
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: nuget-packages
path: packages

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

Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
submodules: true
token: ${{ steps.setup-github-app.outputs.app_token }}

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: nuget-packages
path: release-packages
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/java-library-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
artifactory_password: ${{ secrets.ARTIFACTORY_PASSWORD }}

- name: Cache Maven packages
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 #v5.0.4
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae #v5.0.5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:

- name: Create GitHub Release
if: inputs.is_release == true && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe #v2.6.1
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda #v3.0.0
env:
GITHUB_TOKEN: ${{ steps.app_token.outputs.app_token }}
with:
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
- name: Trigger component tests
if: inputs.component_test_project != ''
id: trigger_component_tests
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
github-token: ${{ steps.app_token.outputs.app_token }}
script: |
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:

- name: Wait for component tests
if: inputs.component_test_project != ''
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
github-token: ${{ steps.app_token.outputs.app_token }}
script: |
Expand Down