Skip to content

Commit 217ab31

Browse files
a-klosrenovate-bot
andauthored
chore(deps): update actions/checkout action to v5 (#99)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | major | `v4` -> `v5` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v5`](https://redirect.github.com/actions/checkout/compare/v4...v5) [Compare Source](https://redirect.github.com/actions/checkout/compare/v4...v5) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am" in timezone UTC, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMjEuNCIsInVwZGF0ZWRJblZlciI6IjQxLjEyMS40IiwidGFyZ2V0QnJhbmNoIjoiZGVwcy1tYWluIiwibGFiZWxzIjpbImdpdGh1Yi1hY3Rpb25zIiwibWFqb3ItdXBkYXRlIl19--> Co-authored-by: Renovate Bot <[email protected]>
1 parent e7aed95 commit 217ab31

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
infrastructure: ${{ steps.changes.outputs.infrastructure }}
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727

@@ -72,7 +72,7 @@ jobs:
7272
service: ["admin-backend", "document-extractor", "rag-backend", "mcp-server"]
7373
steps:
7474
- name: Checkout code
75-
uses: actions/checkout@v4
75+
uses: actions/checkout@v5
7676

7777
- name: Set Docker Image Name
7878
run: |
@@ -102,7 +102,7 @@ jobs:
102102
library: ["rag-core-lib", "rag-core-api", "admin-api-lib", "extractor-api-lib"]
103103
steps:
104104
- name: Checkout code
105-
uses: actions/checkout@v4
105+
uses: actions/checkout@v5
106106

107107
- name: Set Docker Image Names
108108
run: |
@@ -133,7 +133,7 @@ jobs:
133133
if: needs.changes.outputs.frontend == 'true' || github.event_name == 'workflow_dispatch'
134134
steps:
135135
- name: Checkout code
136-
uses: actions/checkout@v4
136+
uses: actions/checkout@v5
137137

138138
- name: Setup Node.js
139139
uses: actions/setup-node@v4
@@ -177,7 +177,7 @@ jobs:
177177
if: needs.changes.outputs.infrastructure == 'true' || github.event_name == 'workflow_dispatch'
178178
steps:
179179
- name: Checkout code
180-
uses: actions/checkout@v4
180+
uses: actions/checkout@v5
181181

182182
- name: Setup Terraform
183183
uses: hashicorp/setup-terraform@v3

.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@v5
3030
- name: Self-hosted Renovate
3131
uses: renovatebot/[email protected]
3232
with:

.github/workflows/semantic-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
new-release-version: ${{ steps.semantic-release.outputs.new-release-version }}
2424
steps:
2525
- name: checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0
2929
submodules: false
@@ -118,7 +118,7 @@ jobs:
118118
echo "🔍 Debug: needs.semantic-release.outputs.new-release-version = ${{ needs.semantic-release.outputs.new-release-version }}"
119119
120120
- name: checkout
121-
uses: actions/checkout@v4
121+
uses: actions/checkout@v5
122122
with:
123123
fetch-depth: 0
124124
submodules: false

infrastructure/.github/workflows/semantic-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
contents: write # to be able to publish a GitHub release
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919
- name: Setup Node.js

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
needs: [SanitizeBranchName]
3434
steps:
3535
- name: Checkout code
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737
with:
3838
token: ${{ secrets.GITHUB_TOKEN }}
3939
repository: stackitcloud/rag-core-library
@@ -59,7 +59,7 @@ jobs:
5959
service: [ "rag-core-lib", "rag-core-api", "admin-api-lib", "extractor-api-lib" ]
6060
steps:
6161
- name: Checkout code
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5
6363
with:
6464
token: ${{ secrets.GITHUB_TOKEN }}
6565
repository: stackitcloud/rag-core-library

libs/.github/workflows/semantic-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
contents: write # to be able to publish a GitHub release
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919
- name: Setup Node.js

0 commit comments

Comments
 (0)