Skip to content

Commit 9a1e4e0

Browse files
Build(deps): Bump actions/checkout from 4 to 5 (#462)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4ce9278 commit 9a1e4e0

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
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@v4
39+
uses: actions/checkout@v5
4040

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

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
env:
1111
POETRY_VIRTUALENVS_CREATE: "false"
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414

1515
- name: Install poetry
1616
run: |

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ jobs:
3030
runs-on: blacksmith-4vcpu-ubuntu-2204
3131
timeout-minutes: 5
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
- name: Build Celery Worker
3535
run: cd src/pytest_celery/vendors/worker && docker build -t pytest-celery-worker .

.github/workflows/examples.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
sudo apt update
4646
sudo apt-get install -y procps # Install procps to enable sysctl
4747
sudo sysctl -w vm.overcommit_memory=1
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
- name: Set up Python ${{ matrix.python-version }}
5050
uses: useblacksmith/setup-python@v6
5151
with:
@@ -79,7 +79,7 @@ jobs:
7979
sudo apt update
8080
sudo apt-get install -y procps # Install procps to enable sysctl
8181
sudo sysctl -w vm.overcommit_memory=1
82-
- uses: actions/checkout@v4
82+
- uses: actions/checkout@v5
8383
- name: Set up Python ${{ matrix.python-version }}
8484
uses: useblacksmith/setup-python@v6
8585
with:
@@ -113,7 +113,7 @@ jobs:
113113
sudo apt update
114114
sudo apt-get install -y procps # Install procps to enable sysctl
115115
sudo sysctl -w vm.overcommit_memory=1
116-
- uses: actions/checkout@v4
116+
- uses: actions/checkout@v5
117117
- name: Set up Python ${{ matrix.python-version }}
118118
uses: useblacksmith/setup-python@v6
119119
with:
@@ -147,7 +147,7 @@ jobs:
147147
sudo apt update
148148
sudo apt-get install -y procps # Install procps to enable sysctl
149149
sudo sysctl -w vm.overcommit_memory=1
150-
- uses: actions/checkout@v4
150+
- uses: actions/checkout@v5
151151
- name: Set up Python ${{ matrix.python-version }}
152152
uses: useblacksmith/setup-python@v6
153153
with:
@@ -181,7 +181,7 @@ jobs:
181181
sudo apt update
182182
sudo apt-get install -y procps # Install procps to enable sysctl
183183
sudo sysctl -w vm.overcommit_memory=1
184-
- uses: actions/checkout@v4
184+
- uses: actions/checkout@v5
185185
- name: Set up Python ${{ matrix.python-version }}
186186
uses: useblacksmith/setup-python@v6
187187
with:
@@ -221,7 +221,7 @@ jobs:
221221
sudo apt update
222222
sudo apt-get install -y procps # Install procps to enable sysctl
223223
sudo sysctl -w vm.overcommit_memory=1
224-
- uses: actions/checkout@v4
224+
- uses: actions/checkout@v5
225225
- name: Set up Python ${{ matrix.python-version }}
226226
uses: useblacksmith/setup-python@v6
227227
with:
@@ -255,7 +255,7 @@ jobs:
255255
sudo apt update
256256
sudo apt-get install -y procps # Install procps to enable sysctl
257257
sudo sysctl -w vm.overcommit_memory=1
258-
- uses: actions/checkout@v4
258+
- uses: actions/checkout@v5
259259
- name: Set up Python ${{ matrix.python-version }}
260260
uses: useblacksmith/setup-python@v6
261261
with:
@@ -289,7 +289,7 @@ jobs:
289289
sudo apt update
290290
sudo apt-get install -y procps # Install procps to enable sysctl
291291
sudo sysctl -w vm.overcommit_memory=1
292-
- uses: actions/checkout@v4
292+
- uses: actions/checkout@v5
293293
- name: Set up Python ${{ matrix.python-version }}
294294
uses: useblacksmith/setup-python@v6
295295
with:
@@ -323,7 +323,7 @@ jobs:
323323
sudo apt update
324324
sudo apt-get install -y procps # Install procps to enable sysctl
325325
sudo sysctl -w vm.overcommit_memory=1
326-
- uses: actions/checkout@v4
326+
- uses: actions/checkout@v5
327327
- name: Set up Python ${{ matrix.python-version }}
328328
uses: useblacksmith/setup-python@v6
329329
with:

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
check: [lint, mypy]
1212
steps:
1313
- name: Checkout branch
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515

1616
- name: Install apt packages
1717
run: |

.github/workflows/parallel-support.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
sudo apt update
5252
sudo apt-get install -y procps # Install procps to enable sysctl
5353
sudo sysctl -w vm.overcommit_memory=1
54-
- uses: actions/checkout@v4
54+
- uses: actions/checkout@v5
5555
- name: Set up Python ${{ matrix.python-version }}
5656
uses: useblacksmith/setup-python@v6
5757
with:
@@ -95,7 +95,7 @@ jobs:
9595
sudo apt update
9696
sudo apt-get install -y procps # Install procps to enable sysctl
9797
sudo sysctl -w vm.overcommit_memory=1
98-
- uses: actions/checkout@v4
98+
- uses: actions/checkout@v5
9999
- name: Set up Python ${{ matrix.python-version }}
100100
uses: useblacksmith/setup-python@v6
101101
with:

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
sudo apt update
5252
sudo apt-get install -y procps # Install procps to enable sysctl
5353
sudo sysctl -w vm.overcommit_memory=1
54-
- uses: actions/checkout@v4
54+
- uses: actions/checkout@v5
5555
- name: Set up Python ${{ matrix.python-version }}
5656
uses: useblacksmith/setup-python@v6
5757
with:
@@ -105,7 +105,7 @@ jobs:
105105
sudo apt update
106106
sudo apt-get install -y procps # Install procps to enable sysctl
107107
sudo sysctl -w vm.overcommit_memory=1
108-
- uses: actions/checkout@v4
108+
- uses: actions/checkout@v5
109109
- name: Set up Python ${{ matrix.python-version }}
110110
uses: useblacksmith/setup-python@v6
111111
with:
@@ -152,7 +152,7 @@ jobs:
152152
sudo apt update
153153
sudo apt-get install -y procps # Install procps to enable sysctl
154154
sudo sysctl -w vm.overcommit_memory=1
155-
- uses: actions/checkout@v4
155+
- uses: actions/checkout@v5
156156
- name: Set up Python ${{ matrix.python-version }}
157157
uses: useblacksmith/setup-python@v6
158158
with:

.github/workflows/semgrep.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
container:
2121
image: returntocorp/semgrep
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- run: semgrep ci

0 commit comments

Comments
 (0)