Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

Commit 0816490

Browse files
authored
Merge pull request #14 from LuxDL/dependabot/github_actions/actions/checkout-4
Bump actions/checkout from 3 to 4
2 parents d3ea9e2 + 1d9bb70 commit 0816490

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- "1"
2222
- "1.6"
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- uses: julia-actions/setup-julia@v1
2626
with:
2727
version: ${{ matrix.version }}

.github/workflows/Downstream.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
- { user: LuxDL, repo: LuxTestUtils.jl, group: All }
2929
if: contains(github.event.pull_request.labels.*.name, 'run downstream test')
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- uses: julia-actions/setup-julia@v1
3333
with:
3434
version: ${{ matrix.julia-version }}
3535
arch: x64
3636
- uses: julia-actions/julia-buildpkg@v1
3737
- name: Clone Downstream
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3939
with:
4040
repository: ${{ matrix.package.user }}/${{ matrix.package.repo }}
4141
path: downstream

.github/workflows/FormatCheck.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
version: ${{ matrix.julia-version }}
2323

24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: Install JuliaFormatter and format
2626
run: |
2727
julia -e 'using Pkg; Pkg.add(PackageSpec(name="JuliaFormatter"))'

.github/workflows/FormatPR.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
- name: Install JuliaFormatter and format
1111
run: |
1212
julia -e 'using Pkg; Pkg.add(PackageSpec(name="JuliaFormatter"))'

.github/workflows/Invalidations.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
- uses: julia-actions/setup-julia@v1
2020
with:
2121
version: "1"
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- uses: julia-actions/julia-buildpkg@v1
2424
- uses: julia-actions/julia-invalidations@v1
2525
id: invs_pr
2626

27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
with:
2929
ref: ${{ github.event.repository.default_branch }}
3030
- uses: julia-actions/julia-buildpkg@v1

0 commit comments

Comments
 (0)