Skip to content

Commit 2fde520

Browse files
dependabot[bot]mrbean-bremen
authored andcommitted
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 613a33b commit 2fde520

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@v4
14+
- uses: actions/checkout@v5
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@v4
20+
- uses: actions/checkout@v5
2121

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

.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@v4
15+
uses: actions/checkout@v5
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:
@@ -46,7 +46,7 @@ jobs:
4646
os: windows-latest
4747

4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v5
5050
- name: Set up Python ${{ matrix.python-version }}
5151
uses: actions/setup-python@v5
5252
with:
@@ -117,7 +117,7 @@ jobs:
117117
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
118118
pytest-version: [6.2.5, 7.0.1, 7.4.4, 8.0.2, 8.3.4]
119119
steps:
120-
- uses: actions/checkout@v4
120+
- uses: actions/checkout@v5
121121
- name: Set up Python ${{ matrix.python-version }}
122122
uses: actions/setup-python@v5
123123
with:
@@ -145,7 +145,7 @@ jobs:
145145
os: [ubuntu-latest, windows-latest]
146146
python-version: ["3.10"]
147147
steps:
148-
- uses: actions/checkout@v4
148+
- uses: actions/checkout@v5
149149
- name: Set up Python ${{ matrix.python-version }}
150150
uses: actions/setup-python@v5
151151
with:

0 commit comments

Comments
 (0)