Skip to content

Commit 41b3bdc

Browse files
build(deps): bump actions/checkout from 5 to 6 (#6167)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 573eec7 commit 41b3bdc

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
TEST_SUITES: ${{ matrix.test-suites }}
142142

143143
steps:
144-
- uses: actions/checkout@v5
144+
- uses: actions/checkout@v6
145145

146146
- name: "Set up Python"
147147
uses: actions/setup-python@v6
@@ -299,7 +299,7 @@ jobs:
299299
- name: Install cross compile dependencies
300300
run: sudo apt-get install -q -y git libgmp-dev:s390x libreadline-dev:s390x zlib1g-dev:s390x
301301

302-
- uses: actions/checkout@v5
302+
- uses: actions/checkout@v6
303303

304304
- run: ./autogen.sh
305305

@@ -365,7 +365,7 @@ jobs:
365365
env:
366366
AUTOCONF_VERSION: 2.71
367367
steps:
368-
- uses: actions/checkout@v5
368+
- uses: actions/checkout@v6
369369

370370
- name: Download required GAP packages
371371
run: |

.github/workflows/gapjl.yml

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

4545
steps:
4646
- name: Checkout GAP
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
with:
4949
path: 'GAPROOT'
5050
- name: "Set up Julia"

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: "Check out the repository"
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
- name: "Set up Python"
2020
uses: actions/setup-python@v6
2121
with:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
name: "Validate release scripts"
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3939

4040
- name: "Set up Python"
4141
uses: actions/setup-python@v6
@@ -72,7 +72,7 @@ jobs:
7272
# requires fetching the entire history. Therefore, we might as well do
7373
# that here when checking out the repo, which is what setting fetch-depth
7474
# to 0 accomplishes here.
75-
- uses: actions/checkout@v5
75+
- uses: actions/checkout@v6
7676
with:
7777
fetch-depth: 0
7878

@@ -207,7 +207,7 @@ jobs:
207207
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
208208

209209
- name: "Clone the Windows installer maker scripts"
210-
uses: actions/checkout@v5
210+
uses: actions/checkout@v6
211211
with:
212212
repository: gap-system/gap-windows
213213
ref: main

.github/workflows/update-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
sudo apt-get update
4242
sudo apt-get install --no-install-recommends "${packages[@]}"
4343
- name: Checkout
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
- name: Configure GAP
4646
run: |
4747
./autogen.sh && ./configure

0 commit comments

Comments
 (0)