Skip to content

Commit a272442

Browse files
Bump actions/checkout from 4 to 5 (#616)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 49a339c commit a272442

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
CompatHelper:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- name: Get Julia compatibility
1414
id: julia_compat
1515
# NOTE: this requires a Julia compat lower-bound with minor version!

.github/workflows/Format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.event.pull_request.draft == false
1717
steps:
1818
- name: Check out repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
ref: ${{github.event.pull_request.head.ref}}
2222
repository: ${{github.event.pull_request.head.repo.full_name}}

.github/workflows/Test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
version: ['1.10', '1.11', '^1.12.0-0', 'nightly']
1818
os: [ubuntu-latest, macOS-latest, windows-latest]
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- uses: julia-actions/setup-julia@v2
2222
with:
2323
version: ${{ matrix.version }}
@@ -42,7 +42,7 @@ jobs:
4242
name: OpenCL.jl
4343
runs-on: ubuntu-latest
4444
steps:
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@v5
4646
- uses: julia-actions/setup-julia@v2
4747
with:
4848
version: '1.11'
@@ -92,7 +92,7 @@ jobs:
9292
name: Documentation
9393
runs-on: ubuntu-latest
9494
steps:
95-
- uses: actions/checkout@v4
95+
- uses: actions/checkout@v5
9696
- uses: julia-actions/setup-julia@v2
9797
with:
9898
version: '1.10'

0 commit comments

Comments
 (0)