Skip to content

Commit 882a12e

Browse files
authored
Merge pull request #7724 from freedomofpress/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 5 to 6
2 parents a252cf9 + d9b4192 commit 882a12e

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
outputs:
2929
artifact_id: ${{ steps.upload.outputs.artifact-id }}
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
with:
3333
persist-credentials: false
3434
- uses: actions/setup-python@v6

.github/workflows/cargo-vet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
env:
1919
CARGO_VET_VERSION: 0.10.0
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
with:
2323
persist-credentials: false
2424
- uses: actions/cache@v4

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install Git
2626
run: |
2727
apt-get update && apt-get install --yes git
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
with:
3030
persist-credentials: false
3131
- name: Install dependencies
@@ -52,7 +52,7 @@ jobs:
5252
ubuntu_version:
5353
- noble
5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656
with:
5757
persist-credentials: false
5858
- name: Build image
@@ -70,7 +70,7 @@ jobs:
7070
ubuntu_version:
7171
- noble
7272
steps:
73-
- uses: actions/checkout@v5
73+
- uses: actions/checkout@v6
7474
with:
7575
persist-credentials: false
7676
- name: Build image
@@ -88,7 +88,7 @@ jobs:
8888
ubuntu_version:
8989
- noble
9090
steps:
91-
- uses: actions/checkout@v5
91+
- uses: actions/checkout@v6
9292
with:
9393
persist-credentials: false
9494
- name: Build image
@@ -109,7 +109,7 @@ jobs:
109109
# Keep version in sync with rust-toolchain.toml
110110
container: rust:1.90.0
111111
steps:
112-
- uses: actions/checkout@v5
112+
- uses: actions/checkout@v6
113113
with:
114114
persist-credentials: false
115115
- name: Install dependencies
@@ -124,7 +124,7 @@ jobs:
124124
admin-tests:
125125
runs-on: ubuntu-latest
126126
steps:
127-
- uses: actions/checkout@v5
127+
- uses: actions/checkout@v6
128128
with:
129129
persist-credentials: false
130130
- name: Run tests

.github/workflows/demo-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
env:
3030
DOCKERIZE_VERSION: v0.6.1
3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
with:
3434
persist-credentials: false
3535
- name: Download artifact

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: 'Checkout Repository'
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
with:
1414
persist-credentials: false
1515
- name: 'Dependency Review'

.github/workflows/security.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# Keep version in sync with rust-toolchain.toml
1515
container: rust:1.90.0
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
with:
1919
persist-credentials: false
2020
- name: Check Rust dependencies
@@ -24,7 +24,7 @@ jobs:
2424
static-analysis:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
with:
2929
persist-credentials: false
3030
- uses: actions/setup-python@v6

.github/workflows/staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
GOOGLE_CREDENTIALS: ${{ secrets.GOOGLE_CREDENTIALS }}
1919
UBUNTU_VERSION: ${{ matrix.ubuntu_version }}
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
with:
2323
persist-credentials: false
2424
- name: Run staging tests on GCE

.github/workflows/translation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
env:
2222
GITHUB_ACTOR: ${{ github.actor }}
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
with:
2626
persist-credentials: false
2727
- name: Generate locale list
@@ -55,7 +55,7 @@ jobs:
5555
env:
5656
LOCALES: ${{ matrix.locale }}
5757
steps:
58-
- uses: actions/checkout@v5
58+
- uses: actions/checkout@v6
5959
with:
6060
persist-credentials: false
6161
- name: Build image

0 commit comments

Comments
 (0)