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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion build-push-container-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions code-quality/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion delete-tags/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
using: "composite"
steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion dependabot-automerge/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion deploy-docker-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -101,15 +101,15 @@ 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'
deployment-id: ${{ steps.create-deployment.outputs.deployment_id }}

- 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'
Expand Down
2 changes: 1 addition & 1 deletion get-tag/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down
2 changes: 1 addition & 1 deletion git-diff/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion load-event-commits-artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion manual-approval/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions publish-nuget/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion push-tag/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion restore-dotnet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
6 changes: 3 additions & 3 deletions test-dotnet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}}
Expand Down