chore(deps): upgrade dependencies #755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
workflow_dispatch: {} | |
jobs: | |
build: | |
runs-on: aws-powertools_ubuntu-latest_8-core | |
permissions: | |
contents: write | |
outputs: | |
self_mutation_happened: ${{ steps.self_mutation.outputs.self_mutation_happened }} | |
env: | |
CI: "true" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Add repository to git safe directories | |
run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: 20 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 # v2.0.0 | |
with: | |
platforms: arm64 | |
# NOTE: we need QEMU to build Layer against a different architecture (e.g., ARM) | |
- name: Set up Docker Buildx | |
id: builder | |
uses: docker/setup-buildx-action@f03ac48505955848960e80bbb68046aa35c7b9e7 # v2.4.1 | |
with: | |
install: true | |
driver: docker | |
platforms: linux/amd64,linux/arm64 | |
- name: Checking space | |
run: df -h | |
- name: Install dependencies | |
run: yarn install --check-files | |
- name: build | |
run: | | |
chown -R $(whoami) $(pwd) | |
npx projen build | |
- id: self_mutation | |
name: Find mutations | |
run: >- | |
git add . | |
git diff --staged --patch --exit-code > .repo.patch || echo "::set-output name=self_mutation_happened::true" | |
- if: steps.self_mutation.outputs.self_mutation_happened | |
name: Upload patch | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 | |
with: | |
name: .repo.patch | |
path: .repo.patch | |
- name: Fail build on mutation | |
if: steps.self_mutation.outputs.self_mutation_happened | |
run: >- | |
echo "::error::Files were changed during build (see build log). If | |
this was triggered from a fork, you will need to update your branch." | |
cat .repo.patch | |
exit 1 | |
- name: Upload artifact | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 | |
with: | |
name: build-artifact | |
path: dist | |
container: | |
image: jsii/superchain:1-buster-slim-node16 | |
options: --user root | |
self-mutation: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
if: always() && needs.build.outputs.self_mutation_happened && | |
!(github.event.pull_request.head.repo.full_name != github.repository) | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
token: ${{ secrets.PROJEN_GITHUB_TOKEN }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Add repository to git safe directories | |
run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
- name: Download patch | |
uses: actions/download-artifact@87c55149d96e628cc2ef7e6fc2aab372015aec85 # v4.1.3 | |
with: | |
name: .repo.patch | |
path: ${{ runner.temp }} | |
- name: Apply patch | |
run: '[ -s ${{ runner.temp }}/.repo.patch ] && git apply ${{ runner.temp | |
}}/.repo.patch || echo "Empty patch. Skipping."' | |
- name: Set git identity | |
run: |- | |
git config user.name "github-actions" | |
git config user.email "[email protected]" | |
- name: Push changes | |
run: |-2 | |
git add . | |
git commit -s -m "chore: self mutation" | |
git push origin HEAD:${{ github.event.pull_request.head.ref }} | |
package-js: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: {} | |
if: "! needs.build.outputs.self_mutation_happened" | |
steps: | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: 20 | |
- name: Download build artifacts | |
uses: actions/download-artifact@87c55149d96e628cc2ef7e6fc2aab372015aec85 # v4.1.3 | |
with: | |
name: build-artifact | |
path: dist | |
- name: Prepare Repository | |
run: mv dist .repo | |
- name: Install Dependencies | |
run: cd .repo && yarn install --check-files --frozen-lockfile | |
- name: Create js artifact | |
run: cd .repo && npx projen package:js | |
- name: Collect js Artifact | |
run: mv .repo/dist dist | |
package-python: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: {} | |
if: "! needs.build.outputs.self_mutation_happened" | |
steps: | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: 20 | |
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 | |
with: | |
python-version: 3.11 | |
- name: Download build artifacts | |
uses: actions/download-artifact@87c55149d96e628cc2ef7e6fc2aab372015aec85 # v4.1.3 | |
with: | |
name: build-artifact | |
path: dist | |
- name: Prepare Repository | |
run: mv dist .repo | |
- name: Install Dependencies | |
run: cd .repo && yarn install --check-files --frozen-lockfile | |
- name: Create python artifact | |
run: cd .repo && npx projen package:python | |
- name: Collect python Artifact | |
run: mv .repo/dist dist |