Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all #68

Merged
merged 2 commits into from
Mar 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: echo acr=$(az acr show -n ${{ env.cr }} --query loginServer | tr -d '"') >> $GITHUB_ENV

- name: Defaults ✨
uses: Azure/cli@1.0.4
uses: Azure/cli@v1.0.7
with:
inlineScript: |
# Basic
Expand All @@ -103,7 +103,7 @@ jobs:
docker push ${{ env.acr }}/${{ env.name }}:${{ env.from }}

- name: Revisions 🔀
uses: Azure/cli@1.0.4
uses: Azure/cli@v1.0.7
with:
inlineScript: |
az containerapp update \
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/infrastructure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- name: Azure defaults ✨
uses: Azure/cli@1.0.4
uses: Azure/cli@v1.0.7
with:
inlineScript: |
# Basic
Expand All @@ -101,7 +101,7 @@ jobs:
az extension add --name containerapp --upgrade

- name: Resource group 🏗️
uses: Azure/cli@1.0.4
uses: Azure/cli@v1.0.7
with:
inlineScript: |
az group create \
Expand All @@ -110,7 +110,7 @@ jobs:


- name: Container registry 📦️
uses: Azure/cli@1.0.4
uses: Azure/cli@v1.0.7
with:
inlineScript: |
az acr create \
Expand All @@ -120,7 +120,7 @@ jobs:
--tags ${{ env.tags }}

- name: Virtual network 🧵
uses: Azure/cli@1.0.4
uses: Azure/cli@v1.0.7
with:
inlineScript: |
az network vnet create \
Expand All @@ -143,7 +143,7 @@ jobs:
# --allow-vnet-access 1

- name: Container app environment 🗃️
uses: Azure/cli@1.0.4
uses: Azure/cli@v1.0.7
with:
inlineScript: |
az containerapp env create \
Expand All @@ -153,7 +153,7 @@ jobs:


- name: Container app - MDM 📄
uses: Azure/cli@1.0.4
uses: Azure/cli@v1.0.7
with:
inlineScript: |
az containerapp create \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
###################

# NPM 8.19.1 Alpine linux image
FROM node:18.9-alpine3.16 AS build
FROM node:18.15-alpine3.16 AS build

# Alpine Linux install packages
RUN apk add bash curl
Expand Down