Skip to content

Commit 40b91b8

Browse files
Bump the all-github-actions group with 3 updates (#180)
Bumps the all-github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [crate-ci/typos](https://github.com/crate-ci/typos). 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) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `crate-ci/typos` from 1.39.0 to 1.40.0 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](crate-ci/typos@v1.39.0...v1.40.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: crate-ci/typos dependency-version: 1.40.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 99ec8f6 commit 40b91b8

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- version: '1.10' # current lts
3535
os: windows-latest
3636
steps:
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838
- uses: julia-actions/setup-julia@v2
3939
with:
4040
version: ${{ matrix.version }}
@@ -70,7 +70,7 @@ jobs:
7070
- shell: bash
7171
run: |
7272
cp ./lcov.info ./lcov-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}.info
73-
- uses: actions/upload-artifact@v4
73+
- uses: actions/upload-artifact@v5
7474
with:
7575
name: lcov-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}
7676
path: ./lcov-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}.info
@@ -92,7 +92,7 @@ jobs:
9292
# Instead, we use the more tedious approach described above.
9393
# At first, we check out the repository and download all artifacts
9494
# (and list files for debugging).
95-
- uses: actions/checkout@v5
95+
- uses: actions/checkout@v6
9696
- uses: actions/download-artifact@v6
9797
- run: ls -R
9898
# Next, we merge the individual coverage files and upload
@@ -117,7 +117,7 @@ jobs:
117117
github-token: ${{ secrets.GITHUB_TOKEN }}
118118
path-to-lcov: ./lcov.info
119119
# Upload merged coverage data as artifact for debugging
120-
- uses: actions/upload-artifact@v4
120+
- uses: actions/upload-artifact@v5
121121
with:
122122
name: lcov
123123
path: ./lcov.info

.github/workflows/DocPreviewCleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout gh-pages branch
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
ref: gh-pages
1818

.github/workflows/Documenter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
build:
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141
- uses: julia-actions/setup-julia@v2
4242
with:
4343
version: '1'

.github/workflows/Downgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
arch:
3030
- x64
3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
- uses: julia-actions/setup-julia@v2
3434
with:
3535
version: ${{ matrix.version }}

.github/workflows/FormatCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
version: ${{ matrix.julia-version }}
2424

25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- name: Install JuliaFormatter and format
2727
# This will use the latest version by default but you can set the version like so:
2828
#

.github/workflows/SpellCheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout Actions Repository
11-
uses: actions/checkout@v5
11+
uses: actions/checkout@v6
1212
- name: Check spelling
13-
uses: crate-ci/typos@v1.39.0
13+
uses: crate-ci/typos@v1.40.0

0 commit comments

Comments
 (0)