Skip to content

Commit c55e887

Browse files
authored
Merge pull request #44 from qutebrowser/dependabot/github_actions/actions/checkout-4
build(deps): bump actions/checkout from 3 to 4
2 parents 38504fa + b9630c0 commit c55e887

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/bleeding.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- /home/runner/work/_temp/:/home/runner/work/_temp/
3333
options: --privileged --tty
3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
with:
3737
persist-credentials: false
3838
- name: Set up problem matchers

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- testenv: actionlint
3636
- testenv: package
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939
with:
4040
persist-credentials: false
4141
- uses: actions/cache@v3
@@ -112,7 +112,7 @@ jobs:
112112
- /home/runner/work/_temp/:/home/runner/work/_temp/
113113
options: --privileged --tty
114114
steps:
115-
- uses: actions/checkout@v3
115+
- uses: actions/checkout@v4
116116
with:
117117
persist-credentials: false
118118
- name: Set up problem matchers
@@ -181,7 +181,7 @@ jobs:
181181
python: "3.9"
182182
runs-on: "${{ matrix.os }}"
183183
steps:
184-
- uses: actions/checkout@v3
184+
- uses: actions/checkout@v4
185185
with:
186186
persist-credentials: false
187187
- uses: actions/cache@v3
@@ -229,7 +229,7 @@ jobs:
229229
runs-on: ubuntu-20.04
230230
steps:
231231
- name: Checkout repository
232-
uses: actions/checkout@v3
232+
uses: actions/checkout@v4
233233
with:
234234
persist-credentials: false
235235
- name: Initialize CodeQL

.github/workflows/docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- archlinux-webengine-unstable-qt6
1919
- archlinux-webengine-qt6
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- uses: actions/setup-python@v4
2323
with:
2424
python-version: '3.x'

.github/workflows/nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: "${{ matrix.os }}"
5151
timeout-minutes: 45
5252
steps:
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v4
5454
with:
5555
ref: "${{ matrix.branch }}"
5656
persist-credentials: false

.github/workflows/recompile-requirements.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
timeout-minutes: 20
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
with:
2323
persist-credentials: false
2424
- name: Set up Python 3.8

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
console.log(`sorted: ${sorted}`);
6363
return sorted.at(-1);
6464
result-encoding: string
65-
- uses: actions/checkout@v3
65+
- uses: actions/checkout@v4
6666
- name: Set up Python
6767
uses: actions/setup-python@v4
6868
with:
@@ -78,7 +78,7 @@ jobs:
7878
git config --global user.name "qutebrowser bot"
7979
git config --global user.email "[email protected]"
8080
- name: Switch to release branch
81-
uses: actions/checkout@v3
81+
uses: actions/checkout@v4
8282
with:
8383
ref: ${{ steps.find-branch.outputs.result }}
8484
- name: Import GPG Key
@@ -138,7 +138,7 @@ jobs:
138138
permissions:
139139
contents: write # To upload release artifacts
140140
steps:
141-
- uses: actions/checkout@v3
141+
- uses: actions/checkout@v4
142142
with:
143143
ref: v${{ needs.prepare.outputs.version }}
144144
- name: Set up Python

0 commit comments

Comments
 (0)