Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/check-license-header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Validate License Headers
run: npm run license:check
2 changes: 1 addition & 1 deletion .github/workflows/deploy-all-production-accounts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
outputs:
target_helplines: ${{ steps.determine-target-helplines.outputs.target_helplines }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-all-staging-accounts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
outputs:
target_helplines: ${{ steps.determine-target-helplines.outputs.target_helplines }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-multiple-accounts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
TWILIO_SSM_PREFIX: ${{matrix.environment_code}}_TWILIO_${{matrix.helpline_code}}
FULL_ENVIRONMENT_NAME: ${{matrix.environment_code == 'PROD' && 'production' || matrix.environment_code == 'STG' && 'staging' || 'development'}}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/raise-rc-merge-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
outputs:
found_branches: ${{steps.find_branches.outputs.found-branches}}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
sparse-checkout-cone-mode: false
sparse-checkout: |
Expand All @@ -50,7 +50,7 @@ jobs:
matrix:
target-branch: ${{ fromJSON(needs.find_target_branches.outputs.found_branches) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set merge branch name
run: |
github_sha_hash=${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/serverless-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout Branch
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/serverless-pre-release-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Create pre release
uses: techmatters/flex-plugins/.github/actions/generate-pre-release@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/serverless-production-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Create production release
uses: techmatters/flex-plugins/.github/actions/generate-production-release@master
Expand Down