Skip to content

Commit 0a1a0c4

Browse files
gateway: 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>
1 parent 094c596 commit 0a1a0c4

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
security-events: write
4848
steps:
4949
- name: Checkout repository
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v6
5151
with:
5252
persist-credentials: false
5353

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
lint:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
with:
1717
persist-credentials: false
1818

.github/workflows/pelican-action-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
group: testsite-${{ github.ref_name }} # must agree with TARGET
2121
steps:
2222
- name: Checkout the test site
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
ref: ${{ env.SOURCE }}
2626
- name: Ignore the action checkout
2727
run: |
2828
echo "self/" >> .git/info/exclude
2929
- name: Checkout self
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
path: self
3333
- name: Reset output directory ${{ env.TARGET }}

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
test:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
with:
3333
persist-credentials: false
3434

.github/workflows/remove_expired.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

19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
with:
2121
persist-credentials: true
2222
# Use PAT so the commit triggers other actions

.github/workflows/stash-action-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
container: quay.io/centos/centos:stream8
3636
steps:
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838

3939
- name: Run action
4040
continue-on-error: true
@@ -58,7 +58,7 @@ jobs:
5858
os: [ubuntu-latest, windows-latest, macos-15-intel, macos-14]
5959
runs-on: ${{ matrix.os }}
6060
steps:
61-
- uses: actions/checkout@v5
61+
- uses: actions/checkout@v6
6262

6363
- name: Run unittests
6464
shell: bash
@@ -135,7 +135,7 @@ jobs:
135135
needs: test-save
136136
runs-on: ${{ matrix.os }}
137137
steps:
138-
- uses: actions/checkout@v5
138+
- uses: actions/checkout@v6
139139

140140
- name: Test intra-workflow stash
141141
uses: ./stash/restore

.github/workflows/update_actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
contents: write
2626
steps:
2727

28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
with:
3030
persist-credentials: true
3131

.github/workflows/update_dummy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525

26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
with:
2828
persist-credentials: true
2929
# We have to use a PAT to commit the workflow file

0 commit comments

Comments
 (0)