Skip to content

Commit

Permalink
chore: bump checkout action version
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-bo-davis committed Sep 27, 2023
1 parent 2e2dc5e commit b99e640
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 21 deletions.
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@v2
uses: actions/checkout@v3

- name: Validate License Headers
run: npm run license:check
3 changes: 1 addition & 2 deletions .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@v2
- uses: actions/checkout@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
Expand All @@ -46,4 +46,3 @@ jobs:
with:
helplines: ${{ needs.configure.outputs.production_helplines }}
environments: '[ "PROD" ]'

3 changes: 1 addition & 2 deletions .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@v2
- uses: actions/checkout@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
Expand All @@ -46,4 +46,3 @@ jobs:
with:
helplines: ${{ needs.configure.outputs.target_helplines }}
environments: '[ "STG" ]'

2 changes: 1 addition & 1 deletion .github/workflows/deploy-multiple-accounts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
TWILIO_AUTH_TOKEN_SECRET_NAME: ${{matrix.helpline_code}}_${{matrix.environment_code}}_AUTH_TOKEN
FULL_ENVIRONMENT_NAME: ${{matrix.environment_code == 'PROD' && 'production' || matrix.environment_code == 'STG' && 'staging' || 'development'}}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v1
with:
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/serverless-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
node-version: [16.x]

steps:
- name: Checkout Branch
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Packages
run: npm install
- name: Run Lint
run: npm run lint --if-present
- name: Run Tests
run: npm run test
- name: Checkout Branch
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Packages
run: npm install
- name: Run Lint
run: npm run lint --if-present
- name: Run Tests
run: npm run test
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 @@ -43,7 +43,7 @@ jobs:

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

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

- 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@v2
- uses: actions/checkout@v3

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

0 comments on commit b99e640

Please sign in to comment.