Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regenerate static files #152

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/shared-ext-ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ env.CHECKOUT_REF }}

- name: Initialise commontooling
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: bbc/rd-cloudfit-commontooling
ref: ${{ env.COMMONTOOLING_BRANCH }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
####################

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

- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
uses: aws-actions/amazon-ecr-login@v2
with:
registry-type: public
mask-password: true
Expand Down Expand Up @@ -170,11 +170,11 @@ jobs:

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

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

Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
steps:
- name: Deploy documentation to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
- name: Adding summary
run: |
echo "Documentation URL: ${{ steps.deployment.outputs.page_url }}" >> $GITHUB_STEP_SUMMARY
2 changes: 1 addition & 1 deletion .github/workflows/shared-ext-commit-check-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out PR code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: ${{github.event.pull_request.commits}} # only checkout commits from this PR
ref: ${{ github.ref }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/shared-ext-release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialise commontooling
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: bbc/rd-cloudfit-commontooling
ref: ${{ env.COMMONTOOLING_BRANCH }}
Expand All @@ -55,7 +55,7 @@ jobs:
releaseRef: refs/tags/${{ steps.nextVersion.outputs.version }}
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # check out entire repo for version calculation

Expand All @@ -72,7 +72,7 @@ jobs:

- name: Create release
id: release
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
script: |
Expand Down