Skip to content

Commit bda2c8c

Browse files
Bump actions/checkout from 5 to 6 (#3861)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 91b8c4a commit bda2c8c

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/codeql-analysis.yml

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

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040

4141
# Initializes the CodeQL tools for scanning.
4242
- name: Initialize CodeQL

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: Build docs
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
- uses: actions/setup-python@v6
3030
with:
3131
python-version: "3.10"

.github/workflows/hiredis-py-integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
5454
name: Redis ${{ matrix.redis-version }}; Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}} (${{ matrix.hiredis-version }}); EL:${{matrix.event-loop}}
5555
steps:
56-
- uses: actions/checkout@v5
56+
- uses: actions/checkout@v6
5757
with:
5858
ref: ${{ inputs.redis-py-branch }}
5959
- name: Run tests

.github/workflows/integration.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
name: Dependency audit
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141
- uses: pypa/gh-action-pip-audit@v1.0.8
4242
with:
4343
inputs: dev_requirements.txt
@@ -48,7 +48,7 @@ jobs:
4848
name: Code linters
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@v5
51+
- uses: actions/checkout@v6
5252
- uses: actions/setup-python@v6
5353
with:
5454
python-version: "3.10"
@@ -84,7 +84,7 @@ jobs:
8484
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
8585
name: Redis ${{ matrix.redis-version }}; Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}}; EL:${{matrix.event-loop}}
8686
steps:
87-
- uses: actions/checkout@v5
87+
- uses: actions/checkout@v6
8888
- name: Run tests
8989
uses: ./.github/actions/run-tests
9090
with:
@@ -108,7 +108,7 @@ jobs:
108108
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
109109
name: Redis ${{ matrix.redis-version }}; Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}}; EL:${{matrix.event-loop}}
110110
steps:
111-
- uses: actions/checkout@v5
111+
- uses: actions/checkout@v6
112112
- name: Run tests
113113
uses: ./.github/actions/run-tests
114114
with:
@@ -133,7 +133,7 @@ jobs:
133133
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
134134
name: Redis ${{ matrix.redis-version }}; Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}} (${{ matrix.hiredis-version }}); EL:${{matrix.event-loop}}
135135
steps:
136-
- uses: actions/checkout@v5
136+
- uses: actions/checkout@v6
137137
- name: Run tests
138138
uses: ./.github/actions/run-tests
139139
with:
@@ -158,7 +158,7 @@ jobs:
158158
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
159159
name: Redis ${{ matrix.redis-version }}; Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}}; EL:${{matrix.event-loop}}
160160
steps:
161-
- uses: actions/checkout@v5
161+
- uses: actions/checkout@v6
162162
- name: Run tests
163163
uses: ./.github/actions/run-tests
164164
with:
@@ -176,7 +176,7 @@ jobs:
176176
matrix:
177177
extension: ['tar.gz', 'whl']
178178
steps:
179-
- uses: actions/checkout@v5
179+
- uses: actions/checkout@v6
180180
- uses: actions/setup-python@v6
181181
with:
182182
python-version: "3.10"
@@ -195,7 +195,7 @@ jobs:
195195
matrix:
196196
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.10', 'pypy-3.11']
197197
steps:
198-
- uses: actions/checkout@v5
198+
- uses: actions/checkout@v6
199199
- uses: actions/setup-python@v6
200200
with:
201201
python-version: ${{ matrix.python-version }}

.github/workflows/pypi-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build_and_package:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: install python
1818
uses: actions/setup-python@v6
1919
with:

.github/workflows/spellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- name: Checkout
9-
uses: actions/checkout@v5
9+
uses: actions/checkout@v6
1010
- name: Check Spelling
1111
uses: rojopolis/spellcheck-github-actions@0.53.0
1212
with:

0 commit comments

Comments
 (0)