Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Pin dependencies #49

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/opex_external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
fetch-depth: 0

# from https://github.com/pagopa/opex-dashboard-azure-action/
- uses: pagopa/[email protected]
- uses: pagopa/opex-dashboard-azure-action@44ff7e926110b207ef99d2972953ec29d5bb2bc6 # v1.0.4
with:
environment: ${{ matrix.environment }}
api-name: ${{ env.API_NAME }}
Expand Down
4 changes: 2 additions & 2 deletions __integrations__/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
- ${COSMOSDB_PORT}:3000

storage-account:
image: mcr.microsoft.com/azure-storage/azurite:3.9.0
image: mcr.microsoft.com/azure-storage/azurite:3.9.0@sha256:6b6c9c24e97a6c000a81503a41bbf366f04c23aa3b473bfc27267145c92eeceb
ports:
- 10000:10000
- 10001:10001
Expand All @@ -42,7 +42,7 @@ services:
- functions-node-18

testagent:
image: node:18-alpine
image: node:18-alpine@sha256:a24108da7089c2d293ceaa61fb8969ec10821e8efe25572e5abb10b1841eb70b
working_dir: /usr/src/app
command: tail -f /dev/null # to keep it up&running
env_file:
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ services:
- "traefik.http.routers.functions.middlewares=testHeader"

fnstorage:
image: mcr.microsoft.com/azure-storage/azurite:3.9.0
image: mcr.microsoft.com/azure-storage/azurite:3.9.0@sha256:6b6c9c24e97a6c000a81503a41bbf366f04c23aa3b473bfc27267145c92eeceb
ports:
- "10000:10000"
- "10001:10001"
Expand All @@ -47,7 +47,7 @@ services:
- io-fn

storage:
image: mcr.microsoft.com/azure-storage/azurite:3.9.0
image: mcr.microsoft.com/azure-storage/azurite:3.9.0@sha256:6b6c9c24e97a6c000a81503a41bbf366f04c23aa3b473bfc27267145c92eeceb
command: ["sh", "-c", "node bin/azurite -l /opt/azurite/folder --blobPort 10003 --queuePort 10004 --tablePort 10005"]
ports:
- "10003:10003"
Expand All @@ -71,7 +71,7 @@ services:
- io-fn

traefik:
image: traefik:v2.0
image: traefik:v2.0@sha256:df0671f3cd101dad36b444e0fc586bedc05604ecda10f33b5d1f3487816d8c9f
command: |-
--entrypoints.web.address=:80
--providers.docker=true
Expand Down
2 changes: 1 addition & 1 deletion docker/cosmosdb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.13.0-alpine
FROM node:18.13.0-alpine@sha256:fda98168118e5a8f4269efca4101ee51dd5c75c0fe56d8eb6fad80455c2f5827

WORKDIR /opt/cosmosdb

Expand Down
2 changes: 1 addition & 1 deletion docker/functions-node-18/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.13.0
FROM node:18.13.0@sha256:d871edd5b68105ebcbfcde3fe8c79d24cbdbb30430d9bd6251c57c56c7bd7646

WORKDIR /usr/src/app

Expand Down
Loading