Skip to content

Commit 5c43dab

Browse files
Bump actions/checkout from 5 to 6 (#41)
* Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/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 ... Signed-off-by: dependabot[bot] <support@github.com> * Add permissions for documentation job in CI --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pere Mato <peremato@users.noreply.github.com>
1 parent 752f296 commit 5c43dab

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/Downgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix:
1616
version: ['lts']
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- uses: julia-actions/setup-julia@v2
2020
with:
2121
version: ${{ matrix.version }}

.github/workflows/ci.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
- x64
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
- name: Checkout G4Examples
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
repository: JuliaHEP/G4Examples.jl
3131
path: examples
@@ -47,11 +47,13 @@ jobs:
4747
docs:
4848
name: Documentation
4949
runs-on: ubuntu-latest
50+
permissions:
51+
contents: write
5052
steps:
5153
- name: Checkout
52-
uses: actions/checkout@v5
54+
uses: actions/checkout@v6
5355
- name: Checkout G4Examples
54-
uses: actions/checkout@v5
56+
uses: actions/checkout@v6
5557
with:
5658
repository: JuliaHEP/G4Examples.jl
5759
path: examples

0 commit comments

Comments
 (0)