From b174558b735e16e49e14fc2904d7dd8dcf2dacc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pedro=20Vieira?= Date: Mon, 20 Oct 2025 10:37:01 +0100 Subject: [PATCH] Bump dependencies (#134) --- README.md | 2 +- build-push-container-image/action.yml | 2 +- code-quality/action.yml | 6 +++--- delete-tags/action.yml | 2 +- dependabot-automerge/action.yml | 2 +- deploy-docker-image/action.yml | 2 +- deploy/action.yml | 6 +++--- get-tag/action.yml | 2 +- git-diff/action.yml | 2 +- load-event-commits-artifact/action.yml | 2 +- manual-approval/action.yml | 2 +- publish-nuget/action.yml | 4 ++-- push-tag/action.yml | 2 +- restore-dotnet/action.yml | 2 +- test-dotnet/action.yml | 6 +++--- 15 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index ee8f855a..eaa6b727 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Sample usage with the default behaviour and options: ```yml deploy-api: name: "Deploy API" - uses: "trakx/github-actions/.github/workflows/shared-build-deploy-container.yml@master" + uses: trakx/github-actions/.github/workflows/shared-build-deploy-container.yml@master with: projectFolder: "src/Trakx.SampleService.Api" serviceName: "sampleservice-api" diff --git a/build-push-container-image/action.yml b/build-push-container-image/action.yml index 33ef8d3e..7bede030 100644 --- a/build-push-container-image/action.yml +++ b/build-push-container-image/action.yml @@ -49,7 +49,7 @@ runs: steps: - name: Checkout trakx/github-actions repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: trakx/github-actions path: ./github-actions-build-push-container-image diff --git a/code-quality/action.yml b/code-quality/action.yml index 0d17d0ec..b7c872bb 100644 --- a/code-quality/action.yml +++ b/code-quality/action.yml @@ -22,12 +22,12 @@ runs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Checkout trakx/github-actions repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: trakx/github-actions path: ./github-actions-code-quality @@ -49,7 +49,7 @@ runs: cp -R ~/.nuget/packages/trakx.* ${{ runner.temp }}/qodana/caches/nuget - name: 'Qodana Scan' - uses: JetBrains/qodana-action@v2023.2 + uses: JetBrains/qodana-action@v2025.2.1 with: cache-dir: ${{ runner.temp }}/qodana/caches env: diff --git a/delete-tags/action.yml b/delete-tags/action.yml index 24dc1ea3..969cd4a5 100644 --- a/delete-tags/action.yml +++ b/delete-tags/action.yml @@ -11,7 +11,7 @@ runs: using: "composite" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/dependabot-automerge/action.yml b/dependabot-automerge/action.yml index 8e76f1a8..7e5155b8 100644 --- a/dependabot-automerge/action.yml +++ b/dependabot-automerge/action.yml @@ -13,7 +13,7 @@ runs: - name: Fetch dependabot metadata if: ${{ github.actor == 'dependabot[bot]' }} id: dependabot-metadata - uses: dependabot/fetch-metadata@v1.6.0 + uses: dependabot/fetch-metadata@v2.4.0 with: github-token: ${{ inputs.githubToken }} diff --git a/deploy-docker-image/action.yml b/deploy-docker-image/action.yml index 8f8cad6a..a20fb081 100644 --- a/deploy-docker-image/action.yml +++ b/deploy-docker-image/action.yml @@ -25,7 +25,7 @@ runs: steps: - name: Checkout trakx/github-actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: trakx/github-actions path: ./deploy-docker-image diff --git a/deploy/action.yml b/deploy/action.yml index 47690d41..9b99b226 100644 --- a/deploy/action.yml +++ b/deploy/action.yml @@ -41,7 +41,7 @@ runs: fi - name: Checkout trakx/github-actions repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: trakx/github-actions path: ./trakx-github-actions-deploy @@ -101,7 +101,7 @@ runs: - name: Update GitHub deployment status (success) if: success() - uses: chrnorm/deployment-status@v2.0.3 + uses: chrnorm/deployment-status@v2.0.7 with: token: '${{ inputs.githubToken }}' state: 'success' @@ -109,7 +109,7 @@ runs: - name: Update GitHub deployment status (failure) if: failure() - uses: chrnorm/deployment-status@v2.0.3 + uses: chrnorm/deployment-status@v2.0.7 with: token: '${{ inputs.githubToken }}' state: 'failure' diff --git a/get-tag/action.yml b/get-tag/action.yml index fd8ce626..1396ec45 100644 --- a/get-tag/action.yml +++ b/get-tag/action.yml @@ -48,7 +48,7 @@ runs: - name: Get next or latest semver id: bumpSemver - uses: anothrNick/github-tag-action@1.62.0 + uses: anothrNick/github-tag-action@1.75.0 env: GITHUB_TOKEN: ${{inputs.githubToken}} DEFAULT_BUMP: ${{steps.bumpLevel.outputs.finalLevel}} diff --git a/git-diff/action.yml b/git-diff/action.yml index a4507a6c..ebc79877 100644 --- a/git-diff/action.yml +++ b/git-diff/action.yml @@ -26,7 +26,7 @@ runs: using: "composite" steps: - name: Checkout trakx/github-actions repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: trakx/github-actions path: ./github-actions-git-diff diff --git a/load-event-commits-artifact/action.yml b/load-event-commits-artifact/action.yml index bb8e24b4..b241761b 100644 --- a/load-event-commits-artifact/action.yml +++ b/load-event-commits-artifact/action.yml @@ -16,7 +16,7 @@ runs: steps: - name: "Download ga-event-commits artifact" - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: ga-event-commits run-id: ${{ inputs.workflowRunId || github.run_id }} diff --git a/manual-approval/action.yml b/manual-approval/action.yml index 36276191..d9da6718 100644 --- a/manual-approval/action.yml +++ b/manual-approval/action.yml @@ -42,7 +42,7 @@ runs: private_key: ${{ env.PRIVATE_KEY }} - name: Waiting for Approval - uses: trstringer/manual-approval@v1.9.0 + uses: trstringer/manual-approval@v1.11.0 env: GITHUB_READ_USERS_APP_TOKEN: ${{ steps.generate_token.outputs.token }} APPROVERS: ${{ inputs.approvers }} diff --git a/publish-nuget/action.yml b/publish-nuget/action.yml index 6e233ff3..a2ce78c4 100644 --- a/publish-nuget/action.yml +++ b/publish-nuget/action.yml @@ -73,10 +73,10 @@ runs: echo "[DEBUG] Compilation mode set to $COMP_MODE" - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Checkout actions repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: trakx/github-actions path: ./github-actions-publish-nuget diff --git a/push-tag/action.yml b/push-tag/action.yml index bd540ef9..1a34527a 100644 --- a/push-tag/action.yml +++ b/push-tag/action.yml @@ -40,7 +40,7 @@ runs: - name: Push tag if: ${{ steps.exists.outputs.tag_exists == 'false' }} - uses: anothrNick/github-tag-action@1.62.0 + uses: anothrNick/github-tag-action@1.75.0 env: GITHUB_TOKEN: ${{inputs.githubToken}} DRY_RUN: 'false' diff --git a/restore-dotnet/action.yml b/restore-dotnet/action.yml index c4d6ad07..1094ac5e 100644 --- a/restore-dotnet/action.yml +++ b/restore-dotnet/action.yml @@ -16,7 +16,7 @@ runs: - name: .NET Install env: DOTNET_INSTALL_DIR: "./.dotnet" # Required by the runner to install dotnet - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: ${{ inputs.dotnetVersion }} diff --git a/test-dotnet/action.yml b/test-dotnet/action.yml index 0f676d3d..779ed3da 100644 --- a/test-dotnet/action.yml +++ b/test-dotnet/action.yml @@ -27,10 +27,10 @@ runs: using: "composite" steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Checkout trakx/github-actions repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: trakx/github-actions path: ./github-actions-test-dotnet @@ -45,7 +45,7 @@ runs: packageReadonlyPat: ${{inputs.packageReadonlyPat}} - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v4.0.1 + uses: aws-actions/configure-aws-credentials@v5.1.0 with: aws-access-key-id: ${{inputs.awsAccessKeyId}} aws-secret-access-key: ${{inputs.awsAccessKeySecret}}