From 2e4bb6f52aadf5067107de52b205b91c1d4151f9 Mon Sep 17 00:00:00 2001 From: "multirepo-manager[bot]" <120337333+multirepo-manager[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 22:27:06 +0000 Subject: [PATCH 1/2] sync: synced file(s) with owlebot/main --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4105eac..5ac1332 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ COPY yarn.lock ./ RUN yarn install --prod --network-concurrency 1 # Stage 2: Final image with code and installed dependencies -FROM node:18 AS final +FROM node:18-alpine AS final WORKDIR /app From 45d952150829891c523c2996a681d39c99a16ba0 Mon Sep 17 00:00:00 2001 From: "multirepo-manager[bot]" <120337333+multirepo-manager[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 00:44:02 +0000 Subject: [PATCH 2/2] sync: synced file(s) with owlebot/main --- .github/workflows/deploy.yaml | 8 +++----- .github/workflows/test.yaml | 16 ++++++---------- 2 files changed, 9 insertions(+), 15 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 675c90c..7f5d499 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -34,18 +34,16 @@ jobs: push: true no-cache: true deploy: - strategy: - matrix: - node-version: [18.x] runs-on: ubuntu-latest if: github.event.repository.name != 'main' && github.event.repository.name != 'template-service' needs: [test, build] steps: - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 20.9.0 + cache: yarn - name: Install SSH key uses: shimataro/ssh-key-action@v2 continue-on-error: true diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a5eedcb..39eedcd 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,15 +13,13 @@ on: jobs: lint: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18.x] steps: - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 20.9.0 + cache: yarn - name: Install SSH key uses: shimataro/ssh-key-action@v2 continue-on-error: true @@ -36,15 +34,13 @@ jobs: run: yarn lint test: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18.x] steps: - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 20.9.0 + cache: yarn - name: Install SSH key uses: shimataro/ssh-key-action@v2 continue-on-error: true