diff --git a/.github/workflows/build_coverage.yaml b/.github/workflows/build_coverage.yaml index de563526554..951f76e32fc 100644 --- a/.github/workflows/build_coverage.yaml +++ b/.github/workflows/build_coverage.yaml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [18.x] services: # Label used to access the service container postgres: diff --git a/.github/workflows/update_contributors.yaml b/.github/workflows/update_contributors.yaml index 9e48158b445..eed516fa44b 100644 --- a/.github/workflows/update_contributors.yaml +++ b/.github/workflows/update_contributors.yaml @@ -9,25 +9,25 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Use Node.js 16.x - uses: actions/setup-node@v3 - with: - node-version: 16.x - - uses: actions/checkout@master - with: - repository: sighphyre/svg-contributors - path: './svg-contributors' - - name: Create Contributors Image - run: | - npm install --prefix ./svg-contributors - ./svg-contributors/bin/contributors -o unleash -n unleash -l 500 - - uses: aws-actions/configure-aws-credentials@v1 - with: + - uses: actions/checkout@v3 + - name: Use Node.js 18.x + uses: actions/setup-node@v3 + with: + node-version: 18.x + - uses: actions/checkout@master + with: + repository: sighphyre/svg-contributors + path: './svg-contributors' + - name: Create Contributors Image + run: | + npm install --prefix ./svg-contributors + ./svg-contributors/bin/contributors -o unleash -n unleash -l 500 + - uses: aws-actions/configure-aws-credentials@v1 + with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} aws-region: ${{ secrets.AWS_DEFAULT_REGION }} - - name: Publish static assets to S3 - run: | - ls -l - aws s3 cp contributors.svg s3://getunleash-static/docs-assets/contributors.svg \ No newline at end of file + - name: Publish static assets to S3 + run: | + ls -l + aws s3 cp contributors.svg s3://getunleash-static/docs-assets/contributors.svg