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
2 changes: 1 addition & 1 deletion .github/workflows/gh-blob-event-processor-api-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.STACK_VERSION }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-blob-event-processor-infra-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.STACK_VERSION }}

Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.STACK_VERSION }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.STACK_VERSION }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup .NET
uses: actions/setup-dotnet@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-client-agent-infra-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.STACK_VERSION }}

Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.STACK_VERSION }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-client-infra-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.CLIENT_VERSION }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-deploy-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

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

- name: Use version inputted or find latest tag
if: ${{ !inputs.use_current_branch }}
Expand All @@ -67,7 +67,7 @@ jobs:

- name: Checkout
if: ${{ !inputs.use_current_branch }}
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.APPLICATION_VERSION }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-deploy-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

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

- name: 'Get latest tag if no version provided'
if: ${{ !inputs.use_current_branch }}
Expand All @@ -72,7 +72,7 @@ jobs:

- name: Checkout (version)
if: ${{ !inputs.use_current_branch }}
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.infra_version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install Python
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-smoke-test-executer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.VERSION }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-smoke-test-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
client_version: ${{ steps.env-setup.outputs.client_version }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Environment Setup
id: env-setup
uses: ./.github/actions/env-setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
client_version: ${{ steps.env-setup.outputs.client_version }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Determine triggering upstream workflow
id: detect_workflow
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:

- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run Trivy file scan
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1
Expand Down
Loading