Skip to content

Commit

Permalink
Merge pull request #84 from bbc/jamessa-actionsPins
Browse files Browse the repository at this point in the history
Regenerate static files
  • Loading branch information
j616 authored Feb 12, 2024
2 parents ad0e546 + 51fe099 commit b71e158
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
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

0 comments on commit b71e158

Please sign in to comment.