Skip to content

Commit 5ef72d4

Browse files
Merge pull request #449 from vladistan/bump-checkout-action-to-v5
Bump checkout action to v5
2 parents e3d1ed5 + 9aad9ea commit 5ef72d4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/check-dependencies.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
quality-checks:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@4.2.2
15+
uses: actions/checkout@v5
1616
- name: Install uv
1717
uses: astral-sh/setup-uv@v6
1818
with:
@@ -56,7 +56,7 @@ jobs:
5656

5757

5858
- name: Check out repository
59-
uses: actions/checkout@v4.2.2
59+
uses: actions/checkout@v5
6060
with:
6161
# Fetch all history for all branches and all tags.
6262
# The tags are required for dynamic versioning.

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
quality-checks:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@4.2.2
20+
- uses: actions/checkout@v5
2121
- name: Install uv
2222
uses: astral-sh/setup-uv@v6
2323
with:
@@ -58,7 +58,7 @@ jobs:
5858

5959
steps:
6060
- name: Check out repository
61-
uses: actions/checkout@4.2.2
61+
uses: actions/checkout@v5
6262
with:
6363
fetch-depth: 0
6464

.github/workflows/pypi-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Build Python 🐍 distributions 📦 for publishing to PyPI
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4.2.2
15+
- uses: actions/checkout@v5
1616
with:
1717
# Checkout the code including tags required for dynamic versioning
1818
fetch-depth: 0

.github/workflows/test-upstream.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ jobs:
8282
echo "upstream_repo=${{ inputs.upstream_repo }}" >> "$GITHUB_ENV"
8383
8484
- name: checkout upstream
85-
uses: actions/checkout@v4.2.2
85+
uses: actions/checkout@v5
8686
with:
8787
repository: "${{ env.upstream_repo }}"
8888
path: linkml
8989
ref: "${{ env.upstream_branch }}"
9090
fetch-depth: 0
9191

9292
- name: checkout linkml-runtime
93-
uses: actions/checkout@v4.2.2
93+
uses: actions/checkout@v5
9494
with:
9595
path: linkml-runtime
9696
fetch-depth: 0

0 commit comments

Comments
 (0)