Skip to content

Commit 51fe099

Browse files
committed
Regenerate static files
1 parent ad0e546 commit 51fe099

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/shared-ext-ci-workflow.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ jobs:
6666
runs-on: ubuntu-22.04
6767
steps:
6868
- name: Check out repository code
69-
uses: actions/checkout@v3
69+
uses: actions/checkout@v4
7070
with:
7171
ref: ${{ env.CHECKOUT_REF }}
7272

7373
- name: Initialise commontooling
74-
uses: actions/checkout@v3
74+
uses: actions/checkout@v4
7575
with:
7676
repository: bbc/rd-cloudfit-commontooling
7777
ref: ${{ env.COMMONTOOLING_BRANCH }}
@@ -99,7 +99,7 @@ jobs:
9999
####################
100100

101101
- name: Check out repository code
102-
uses: actions/checkout@v3
102+
uses: actions/checkout@v4
103103
with:
104104
fetch-depth: 0 # check out entire repo for version calculation
105105
ref: ${{ env.CHECKOUT_REF }}
@@ -113,7 +113,7 @@ jobs:
113113

114114
- name: Login to Amazon ECR
115115
id: login-ecr
116-
uses: aws-actions/amazon-ecr-login@v1
116+
uses: aws-actions/amazon-ecr-login@v2
117117
with:
118118
registry-type: public
119119
mask-password: true
@@ -170,11 +170,11 @@ jobs:
170170

171171
- name: Setup pages
172172
if: ${{ inputs.forceDocsUpload || startsWith(env.CHECKOUT_REF, 'refs/tags/') }}
173-
uses: actions/configure-pages@v3
173+
uses: actions/configure-pages@v4
174174

175175
- name: Upload documentation artifact
176176
if: ${{ inputs.forceDocsUpload || startsWith(env.CHECKOUT_REF, 'refs/tags/') }}
177-
uses: actions/upload-pages-artifact@v2
177+
uses: actions/upload-pages-artifact@v3
178178
with:
179179
path: './docs'
180180

@@ -203,7 +203,7 @@ jobs:
203203
steps:
204204
- name: Deploy documentation to GitHub Pages
205205
id: deployment
206-
uses: actions/deploy-pages@v2
206+
uses: actions/deploy-pages@v4
207207
- name: Adding summary
208208
run: |
209209
echo "Documentation URL: ${{ steps.deployment.outputs.page_url }}" >> $GITHUB_STEP_SUMMARY

.github/workflows/shared-ext-commit-check-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
steps:
1212
- name: Check out PR code
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
with:
1515
fetch-depth: ${{github.event.pull_request.commits}} # only checkout commits from this PR
1616
ref: ${{ github.ref }}

.github/workflows/shared-ext-release-workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
runs-on: ubuntu-22.04
3030
steps:
3131
- name: Check out repository code
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333

3434
- name: Initialise commontooling
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
repository: bbc/rd-cloudfit-commontooling
3838
ref: ${{ env.COMMONTOOLING_BRANCH }}
@@ -55,7 +55,7 @@ jobs:
5555
releaseRef: refs/tags/${{ steps.nextVersion.outputs.version }}
5656
steps:
5757
- name: Check out repository code
58-
uses: actions/checkout@v3
58+
uses: actions/checkout@v4
5959
with:
6060
fetch-depth: 0 # check out entire repo for version calculation
6161

@@ -72,7 +72,7 @@ jobs:
7272
7373
- name: Create release
7474
id: release
75-
uses: actions/github-script@v6
75+
uses: actions/github-script@v7
7676
with:
7777
github-token: "${{ secrets.GITHUB_TOKEN }}"
7878
script: |

0 commit comments

Comments
 (0)