Skip to content

Commit

Permalink
Merge pull request #57 from velocitycareerlabs/Story/VL-4376-Deal-wit…
Browse files Browse the repository at this point in the history
…h-CI-deprecation-warnings

Deal with CI deprecation warnings
  • Loading branch information
ArpitChristie authored Apr 26, 2023
2 parents 9177242 + 1931086 commit dc3cde5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-mifos-to-s3.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# Set Dev Environment
- name: Set Dev environment
if: github.ref == 'refs/heads/dev'
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Set S3 Bucket Prefix
run: echo 'AWS_S3_BUCKET=${{ env.STACK_NAME }}-mifos-${{ env.CLOUD_ENV }}' >> $GITHUB_ENV
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Set up Ruby
Expand All @@ -88,7 +88,7 @@ jobs:
run: |
grunt prod --force
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mifos-ci.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# Set Dev Environment
- name: Set environment on pull_request
run: |
Expand All @@ -21,7 +21,7 @@ jobs:
sed -i 's|$AUTH0_AUDIENCE|${{ secrets.AUTH0_AUDIENCE_DEV }}|g' app/scripts/modules/configurations.js
sed -i 's|$FINERACT_BASE_URL|${{ secrets.FINERACT_BASE_URL_DEV }}|g' app/scripts/modules/configurations.js
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Set up Ruby
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/velocity-dev-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: kamiazya/setup-graphviz@v1
- uses: actions/checkout@v3
- uses: ts-graphviz/setup-graphviz@v1

- name: transfer files to host
uses: garygrossgarten/github-action-scp@release
Expand Down

0 comments on commit dc3cde5

Please sign in to comment.