Skip to content

Commit cfea891

Browse files
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] <[email protected]>
1 parent 95dbeb5 commit cfea891

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/dockertests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
matrix:
1212
docker-image: [debian, fedora, ubuntu, redhat]
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- name: Setup docker container
1616
run: |
1717
docker build -t pyfakefs -f $GITHUB_WORKSPACE/.github/workflows/dockerfiles/Dockerfile_${{ matrix.docker-image }} . --build-arg github_repo=$GITHUB_REPOSITORY --build-arg github_branch=$GITHUB_REF_NAME

.github/workflows/release-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
python-version: [ '3.10' ]
1818

1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121

2222
- name: Set up Python ${{ matrix.python-version }}
2323
uses: actions/setup-python@v6

.github/workflows/testsuite.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out repository
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
- name: Set up Python
1717
uses: actions/setup-python@v6
1818
with:
@@ -38,7 +38,7 @@ jobs:
3838
os: ubuntu-latest
3939

4040
steps:
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
- name: Set up Python ${{ matrix.python-version }}
4343
uses: actions/setup-python@v6
4444
with:
@@ -116,7 +116,7 @@ jobs:
116116
pytest-version: 8.4.2
117117
os: windows-latest
118118
steps:
119-
- uses: actions/checkout@v5
119+
- uses: actions/checkout@v6
120120
- name: Set up Python ${{ matrix.python-version }}
121121
uses: actions/setup-python@v6
122122
with:
@@ -149,7 +149,7 @@ jobs:
149149
os: [ubuntu-latest, windows-latest]
150150
python-version: ["3.13"]
151151
steps:
152-
- uses: actions/checkout@v5
152+
- uses: actions/checkout@v6
153153
- name: Set up Python ${{ matrix.python-version }}
154154
uses: actions/setup-python@v6
155155
with:

0 commit comments

Comments
 (0)