Skip to content

Commit 78700e3

Browse files
build(deps): bump actions/checkout from 5 to 6 in the actions group (#710)
Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 927d51b commit 78700e3

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/deployment.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# We need extglob for REFERENCE_BRANCH substitution
3636
shell: bash -l -O extglob {0}
3737
steps:
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3939
with:
4040
token: ${{ github.token }}
4141
- run: |
@@ -99,7 +99,7 @@ jobs:
9999
runs-on: ubuntu-latest
100100
steps:
101101
- name: Checkout
102-
uses: actions/checkout@v5
102+
uses: actions/checkout@v6
103103
- name: Set up QEMU
104104
uses: docker/setup-qemu-action@v3
105105
- name: Set up Docker Buildx
@@ -172,12 +172,12 @@ jobs:
172172
if: ${{ needs.deploy-pypi.outputs.create-release == 'true' }}
173173
steps:
174174
- name: Checkout diracx
175-
uses: actions/checkout@v5
175+
uses: actions/checkout@v6
176176
with:
177177
path: diracx
178178

179179
- name: Checkout diracx-charts
180-
uses: actions/checkout@v5
180+
uses: actions/checkout@v6
181181
with:
182182
repository: DIRACGrid/diracx-charts
183183
token: ${{ secrets.CHARTS_UPDATE_TOKEN }}

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
dirac-branch:
2424
- integration
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
- uses: actions/setup-python@v6
2828
with:
2929
python-version: '3.11'

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
- uses: prefix-dev/[email protected]
2222
with:
2323
run-install: false
@@ -52,7 +52,7 @@ jobs:
5252
- gubbins-cli
5353
steps:
5454
- name: Checkout code
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656
- uses: prefix-dev/[email protected]
5757
with:
5858
run-install: false
@@ -103,7 +103,7 @@ jobs:
103103
echo "After cleanup:"
104104
df -h
105105
- name: Checkout code
106-
uses: actions/checkout@v5
106+
uses: actions/checkout@v6
107107
- uses: prefix-dev/[email protected]
108108
with:
109109
run-install: false
@@ -241,7 +241,7 @@ jobs:
241241
package: [diracx, gubbins]
242242
steps:
243243
- name: Checkout code
244-
uses: actions/checkout@v5
244+
uses: actions/checkout@v6
245245
- uses: prefix-dev/[email protected]
246246
with:
247247
run-install: false

.github/workflows/update_security_txt_expiry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020

2121
- name: Set up Python
2222
uses: actions/setup-python@v6

.github/workflows/vulnerabilities.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222
tags: true

0 commit comments

Comments
 (0)