Skip to content

Commit eb4aff8

Browse files
Merge branch 'main' into filter/utm-into-xcust
2 parents fece7df + b2b8f56 commit eb4aff8

35 files changed

+37
-340
lines changed

.github/workflows/ab-testing-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
FASTLY_AB_TESTING_CONFIG: ${{ secrets.FASTLY_AB_TESTING_CONFIG }}
2929
FASTLY_API_TOKEN: ${{ secrets.FASTLY_API_TOKEN }}
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232

3333
- name: Set up Node environment
3434
uses: ./.github/actions/setup-node-env

.github/workflows/ab-testing-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run:
2525
working-directory: ab-testing/config
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828

2929
- name: Set up Node environment
3030
uses: ./.github/actions/setup-node-env

.github/workflows/ab-testing-ui.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
permissions:
2222
contents: read
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525

2626
- name: Set up Node environment
2727
uses: ./.github/actions/setup-node-env
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: Checkout
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v6
5151
with:
5252
fetch-depth: 0
5353
persist-credentials: false

.github/workflows/ar-chromatic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
github.event.pull_request.user.login != 'dependabot')
2020
steps:
2121
- name: Checkout - On Pull Request
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
if: ${{ github.event_name == 'pull_request'}}
2424
with:
2525
fetch-depth: 0
@@ -28,7 +28,7 @@ jobs:
2828
# Hopefully by checking out the HEAD commit of a PR instead of the merge commit we can avoid some of those issues.
2929
ref: ${{ github.event.pull_request.head.sha }}
3030
- name: Checkout - On Push Event
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
if: ${{ github.event_name == 'push'}}
3333
with:
3434
fetch-depth: 0

.github/workflows/ar-ci.yml

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

2424
# Checkout the repository
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727

2828
- name: Set up Node environment
2929
uses: ./.github/actions/setup-node-env

.github/workflows/ar-nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222

2323
- name: Set up Node environment
2424
uses: ./.github/actions/setup-node-env

.github/workflows/build-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515

1616
- name: Set up Node environment
1717
uses: ./.github/actions/setup-node-env

.github/workflows/bundle-analyser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414

1515
- name: Set up Node environment
1616
uses: ./.github/actions/setup-node-env

.github/workflows/container.yml

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

2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323

2424
- name: Set up Node environment
2525
uses: ./.github/actions/setup-node-env

.github/workflows/dcr-chromatic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: contains(github.event.pull_request.labels.*.name, 'run_chromatic') || github.ref == 'refs/heads/main'
1616
steps:
1717
- name: Checkout - On Pull Request
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
if: ${{ github.event_name == 'pull_request'}}
2020
with:
2121
fetch-depth: 0
@@ -24,7 +24,7 @@ jobs:
2424
# Hopefully by checking out the HEAD commit of a PR instead of the merge commit we can avoid some of those issues.
2525
ref: ${{ github.event.pull_request.head.sha }}
2626
- name: Checkout - On Push Event
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
if: ${{ github.event_name == 'push'}}
2929
with:
3030
fetch-depth: 0

0 commit comments

Comments
 (0)