Skip to content

Commit 33fe527

Browse files
committed
chore(deps): update actions/checkout action to v6
1 parent d377d52 commit 33fe527

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

.github/workflows/build-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
tag: ${{ steps.release_tag.outputs.tag }}
1717
version: ${{ steps.release_tag.outputs.version }}
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222
- name: Resolve release tag & version
@@ -57,7 +57,7 @@ jobs:
5757
VERSION: ${{ needs.prepare.outputs.version }}
5858
TAG: ${{ needs.prepare.outputs.tag }}
5959
steps:
60-
- uses: actions/checkout@v4
60+
- uses: actions/checkout@v6
6161
with:
6262
fetch-depth: 0
6363
- name: Checkout release tag

.github/workflows/bump-chart-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
bump:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0
2525
ref: ${{ inputs.ref || 'main' }}

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
}}
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222
token: ${{ secrets.PR_AUTOMATION_TOKEN }}

.github/workflows/lint-and-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
infrastructure: ${{ steps.changes.outputs.infrastructure }}
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131
with:
3232
fetch-depth: 0
3333

@@ -78,7 +78,7 @@ jobs:
7878
service: ["admin-backend", "document-extractor", "rag-backend", "mcp-server"]
7979
steps:
8080
- name: Checkout code
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v6
8282

8383
- name: Set Docker Image Name
8484
run: |
@@ -108,7 +108,7 @@ jobs:
108108
library: ["rag-core-lib", "rag-core-api", "admin-api-lib", "extractor-api-lib"]
109109
steps:
110110
- name: Checkout code
111-
uses: actions/checkout@v4
111+
uses: actions/checkout@v6
112112

113113
- name: Set Docker Image Name
114114
run: |
@@ -140,7 +140,7 @@ jobs:
140140
if: needs.changes.outputs.frontend == 'true' || github.event_name == 'workflow_dispatch'
141141
steps:
142142
- name: Checkout code
143-
uses: actions/checkout@v4
143+
uses: actions/checkout@v6
144144

145145
- name: Setup Node.js
146146
uses: actions/setup-node@v4
@@ -184,7 +184,7 @@ jobs:
184184
if: needs.changes.outputs.infrastructure == 'true' || github.event_name == 'workflow_dispatch'
185185
steps:
186186
- name: Checkout code
187-
uses: actions/checkout@v4
187+
uses: actions/checkout@v6
188188

189189
- name: Setup Terraform
190190
uses: hashicorp/setup-terraform@v3

.github/workflows/prepare-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
if: ${{ github.event_name == 'workflow_dispatch' }}
3838
run: echo "releasable=true" >> "$GITHUB_OUTPUT"
3939

40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v6
4141
if: ${{ github.event_name == 'pull_request' }}
4242
with:
4343
fetch-depth: 0
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ubuntu-latest
5858
needs: [changes]
5959
steps:
60-
- uses: actions/checkout@v4
60+
- uses: actions/checkout@v6
6161
with:
6262
fetch-depth: 0
6363

.github/workflows/promote-clean-semver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
name: Publish clean semver, refresh locks, bump appVersion
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
with:
3535
fetch-depth: 0
3636
ref: ${{ inputs.ref || 'main' }}

.github/workflows/publish-chart-packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
allow: ${{ steps.allow_manual.outputs.allow || steps.allow_push.outputs.allow }}
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232
- name: Allow manual run
3333
id: allow_manual
3434
if: ${{ github.event_name == 'workflow_dispatch' }}
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
if: ${{ needs.gate.outputs.allow == 'true' }}
4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v6
5151
with:
5252
fetch-depth: 0
5353
ref: ${{ inputs.ref || 'main' }}

.github/workflows/publish-pre-and-qa.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
version: ${{ steps.ver.outputs.version }}
3030
clean_version: ${{ steps.ver.outputs.clean_version }}
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333
with:
3434
fetch-depth: 0
3535

@@ -150,7 +150,7 @@ jobs:
150150
env:
151151
PRE_RELEASE_VERSION: ${{ needs.publish-pre.outputs.version }}
152152
steps:
153-
- uses: actions/checkout@v4
153+
- uses: actions/checkout@v6
154154
with:
155155
fetch-depth: 0
156156

@@ -201,7 +201,7 @@ jobs:
201201
env:
202202
PRE_RELEASE_VERSION: ${{ needs.publish-pre.outputs.version }}
203203
steps:
204-
- uses: actions/checkout@v4
204+
- uses: actions/checkout@v6
205205
with:
206206
fetch-depth: 0
207207

.github/workflows/renovate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
- name: Self-hosted Renovate
3131
uses: renovatebot/github-action@v43.0.20
3232
with:

0 commit comments

Comments
 (0)