Skip to content

Commit 0ac7ff8

Browse files
chore(deps): update actions/checkout action to v6 (#535)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Garen Torikian <gjtorikian@users.noreply.github.com>
1 parent eba41bd commit 0ac7ff8

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v6
2323
- uses: astral-sh/setup-uv@v7
2424
with:
2525
python-version: ${{ matrix.python }}
@@ -49,7 +49,7 @@ jobs:
4949
matrix:
5050
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
5151
steps:
52-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v6
5353
- uses: astral-sh/setup-uv@v7
5454
with:
5555
python-version: ${{ matrix.python }}

.github/workflows/coana-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Run Coana CLI
2222
id: coana-cli

.github/workflows/coana-guardrail.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Checkout the ${{github.base_ref}} branch
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v6
1212
with:
1313
ref: ${{github.base_ref}} # checkout the base branch (usually master/main).
1414

@@ -44,7 +44,7 @@ jobs:
4444
run: sudo chown -R $USER:$USER .
4545

4646
- name: Checkout the current branch
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v6
4848
with:
4949
clean: true
5050

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
private-key: ${{ secrets.SDK_BOT_PRIVATE_KEY }}
2626

2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v6
2929
with:
3030
token: ${{ steps.generate-token.outputs.token }}
3131

@@ -52,7 +52,7 @@ jobs:
5252
contents: read
5353
steps:
5454
- name: Checkout
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v6
5656
- name: Install uv
5757
uses: astral-sh/setup-uv@v6
5858
- name: Build

.github/workflows/version-bump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
private-key: ${{ secrets.SDK_BOT_PRIVATE_KEY }}
2828

2929
- name: Checkout
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131
with:
3232
token: ${{ steps.generate-token.outputs.token }}
3333

0 commit comments

Comments
 (0)