Skip to content

Commit f778f2c

Browse files
build: bump actions/checkout from 5 to 6 in the actions-deps group (#250)
Bumps the actions-deps group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent fbce431 commit f778f2c

22 files changed

+38
-38
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
6060
steps:
6161
- name: Checkout repository
62-
uses: actions/checkout@v5
62+
uses: actions/checkout@v6
6363

6464
# Add any setup steps before running the `github/codeql-action/init` action.
6565
# This includes steps like installing compilers or runtimes (`actions/setup-node`

.github/workflows/cogstack-es_main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
max-parallel: 4
2727

2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
- name: Set up Python ${{ matrix.python-version }}
3131
uses: actions/setup-python@v6
3232
with:
@@ -51,7 +51,7 @@ jobs:
5151
max-parallel: 4
5252

5353
steps:
54-
- uses: actions/checkout@v5
54+
- uses: actions/checkout@v6
5555
- name: Set up Python ${{ matrix.python-version }}
5656
uses: actions/setup-python@v6
5757
with:
@@ -72,7 +72,7 @@ jobs:
7272
needs: types-lint-tests
7373
steps:
7474
- name: Checkout main
75-
uses: actions/checkout@v5
75+
uses: actions/checkout@v6
7676
with:
7777
fetch-depth: 0 # fetch all history
7878
fetch-tags: true # fetch tags explicitly

.github/workflows/cogstack-es_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout main
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Release Tag
2323
# If GITHUB_REF=refs/tags/cogstack-es/v0.1.2, this returns v0.1.2. Note it's including the "v" though it probably shouldnt

.github/workflows/medcat-demo-app_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
MEDCAT_BRANCH: ${{ github.head_ref || github.ref_name }}
2020

2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323

2424
- name: 🧹 Free up disk space
2525
run: |

.github/workflows/medcat-den_main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
python-version: [ '3.10', '3.11', '3.12' ]
2424
max-parallel: 4
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
- name: Install uv for Python ${{ matrix.python-version }}
2828
uses: astral-sh/setup-uv@v7
2929
with:
@@ -49,7 +49,7 @@ jobs:
4949
needs: build
5050
steps:
5151
- name: Checkout main
52-
uses: actions/checkout@v5
52+
uses: actions/checkout@v6
5353
with:
5454
fetch-depth: 0 # fetch all history
5555
fetch-tags: true # fetch tags explicitly

.github/workflows/medcat-den_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout main
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Release Tag
2323
# If GITHUB_REF=refs/tags/medcat-den/v0.1.2, this returns v0.1.2. Note it's including the "v" though it probably shouldnt

.github/workflows/medcat-scripts_main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
2323
max-parallel: 4
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- name: Install uv for Python ${{ matrix.python-version }}
2727
uses: astral-sh/setup-uv@v7
2828
with:

.github/workflows/medcat-service_docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
image_version: ${{ steps.meta.outputs.version }}
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828

2929
- name: 🧹 Free up disk space
3030
run: |
@@ -131,7 +131,7 @@ jobs:
131131
steps:
132132

133133
- name: Check out code
134-
uses: actions/checkout@v5
134+
uses: actions/checkout@v6
135135

136136
- name: Run Test with example model pack
137137
run: |

.github/workflows/medcat-service_run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: checkout repo
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222

2323
- name: Cache MedMen Model
2424
id: cache-medmen

.github/workflows/medcat-trainer-v1_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout main
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
ref: ${{ github.ref }}
2222

0 commit comments

Comments
 (0)