Skip to content

Commit c018e6f

Browse files
authored
Merge branch 'main' into ds/test-sourcepoint-aus
2 parents 999be27 + 688e13f commit c018e6f

File tree

82 files changed

+1962
-2092
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+1962
-2092
lines changed

.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@v4
22+
uses: actions/checkout@v5
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@v4
31+
uses: actions/checkout@v5
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@v4
26+
- uses: actions/checkout@v5
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@v4
21+
- uses: actions/checkout@v5
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@v4
14+
uses: actions/checkout@v5
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@v4
13+
uses: actions/checkout@v5
1414

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

.github/workflows/container.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Commercial also use this container image for their E2E tests
2+
# Commercial rely on a container image built from the main branch with the tag 'main'
13
on:
24
workflow_call:
35
outputs:
@@ -17,10 +19,7 @@ jobs:
1719

1820
steps:
1921
- name: Checkout repository
20-
uses: actions/checkout@v4
21-
22-
- name: Inject slug/short variables
23-
uses: rlespinasse/[email protected]
22+
uses: actions/checkout@v5
2423

2524
- name: Set up Node environment
2625
uses: ./.github/actions/setup-node-env
@@ -39,7 +38,8 @@ jobs:
3938
uses: redhat-actions/[email protected]
4039
with:
4140
image: dotcom-rendering
42-
tags: ${{ github.sha }} ${{ env.GITHUB_REF_SLUG }}
41+
# Commercial rely on a container image built from the main branch with the tag 'main'
42+
tags: ${{ github.sha }} ${{ github.ref == 'refs/heads/main' && 'main' || '' }}
4343
context: ./
4444
containerfiles: ./dotcom-rendering/Containerfile
4545

.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@v4
18+
uses: actions/checkout@v5
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@v4
27+
uses: actions/checkout@v5
2828
if: ${{ github.event_name == 'push'}}
2929
with:
3030
fetch-depth: 0

.github/workflows/deno.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: 🦕 Deno health
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313

1414
# https://github.com/denoland/setup-deno#latest-stable-for-a-major
1515
- uses: denoland/setup-deno@v1

.github/workflows/jest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
jest:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v4
8+
- uses: actions/checkout@v5
99

1010
- name: Set up Node environment
1111
uses: ./.github/actions/setup-node-env

.github/workflows/lighthouse.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- 'http://localhost:9000/Front/https://www.theguardian.com/uk'
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Set up Node environment
2020
uses: ./.github/actions/setup-node-env

0 commit comments

Comments
 (0)