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
4 changes: 2 additions & 2 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
tag: ${{ steps.release_tag.outputs.tag }}
version: ${{ steps.release_tag.outputs.version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Resolve release tag & version
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
VERSION: ${{ needs.prepare.outputs.version }}
TAG: ${{ needs.prepare.outputs.tag }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Checkout release tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bump-chart-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ inputs.ref || 'main' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.PR_AUTOMATION_TOKEN }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
infrastructure: ${{ steps.changes.outputs.infrastructure }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
service: ["admin-backend", "document-extractor", "rag-backend", "mcp-server"]
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set Docker Image Name
run: |
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
library: ["rag-core-lib", "rag-core-api", "admin-api-lib", "extractor-api-lib"]
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set Docker Image Name
run: |
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
if: needs.changes.outputs.frontend == 'true' || github.event_name == 'workflow_dispatch'
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
if: needs.changes.outputs.infrastructure == 'true' || github.event_name == 'workflow_dispatch'
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
if: ${{ github.event_name == 'workflow_dispatch' }}
run: echo "releasable=true" >> "$GITHUB_OUTPUT"

- uses: actions/checkout@v4
- uses: actions/checkout@v6
if: ${{ github.event_name == 'pull_request' }}
with:
fetch-depth: 0
Expand All @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
needs: [changes]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/promote-clean-semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
name: Publish clean semver, refresh locks, bump appVersion
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ inputs.ref || 'main' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-chart-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
allow: ${{ steps.allow_manual.outputs.allow || steps.allow_push.outputs.allow }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Allow manual run
id: allow_manual
if: ${{ github.event_name == 'workflow_dispatch' }}
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ needs.gate.outputs.allow == 'true' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ inputs.ref || 'main' }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-pre-and-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
version: ${{ steps.ver.outputs.version }}
clean_version: ${{ steps.ver.outputs.clean_version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
env:
PRE_RELEASE_VERSION: ${{ needs.publish-pre.outputs.version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
env:
PRE_RELEASE_VERSION: ${{ needs.publish-pre.outputs.version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Self-hosted Renovate
uses: renovatebot/github-action@v43.0.20
with:
Expand Down