Skip to content

Commit e337448

Browse files
Pin dependencies
1 parent 468acc0 commit e337448

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.github/workflows/code-review.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323

2424
steps:
2525
- name: Check out code
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
2727
with:
2828
fetch-depth: 2
2929

3030
- name: Setup Node.js environment
31-
uses: actions/setup-node@v3
31+
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
3232
with:
3333
node-version-file: ".node-version"
3434
cache: "yarn"
@@ -37,7 +37,7 @@ jobs:
3737
run: yarn install --immutable
3838

3939
- name: Cache turbo build setup
40-
uses: actions/cache@v3
40+
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
4141
with:
4242
path: node_modules/.cache/turbo
4343
key: ${{ runner.os }}-turbo-${{ github.sha }}

.github/workflows/deploy-issuer-func.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Delete old tag
25-
uses: actions/github-script@v7
25+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
2626
with:
2727
script: |
2828
github.rest.git.deleteRef({
@@ -32,7 +32,7 @@ jobs:
3232
})
3333
continue-on-error: true
3434
- name: Create tag
35-
uses: actions/github-script@v7
35+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
3636
with:
3737
script: |
3838
github.rest.git.createRef({

.github/workflows/label.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
pull-requests: write
1818

1919
steps:
20-
- uses: actions/labeler@v4
20+
- uses: actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594 # v4
2121
with:
2222
repo-token: "${{ secrets.GITHUB_TOKEN }}"
2323

2424
# Note that the following step
2525
# never removes labels
26-
- uses: actions/github-script@v6
26+
- uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
2727
id: set-result
2828
with:
2929
script: |

.github/workflows/opex_api_issuer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
fetch-depth: 0
3636

3737
# from https://github.com/pagopa/opex-dashboard-azure-action/
38-
- uses: pagopa/opex-dashboard-azure-action@v1.1.0
38+
- uses: pagopa/opex-dashboard-azure-action@f44f85839096c15ec358293f3a2dd2b10d367119 # v1.1.0
3939
with:
4040
environment: prod
4141
api-name: ${{ env.API_NAME }}

.github/workflows/opex_api_support.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fetch-depth: 0
3434

3535
# from https://github.com/pagopa/opex-dashboard-azure-action/
36-
- uses: pagopa/opex-dashboard-azure-action@v1.1.0
36+
- uses: pagopa/opex-dashboard-azure-action@f44f85839096c15ec358293f3a2dd2b10d367119 # v1.1.0
3737
with:
3838
environment: prod
3939
api-name: ${{ env.API_NAME }}

.github/workflows/opex_api_user.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fetch-depth: 0
3434

3535
# from https://github.com/pagopa/opex-dashboard-azure-action/
36-
- uses: pagopa/opex-dashboard-azure-action@v1.2.1
36+
- uses: pagopa/opex-dashboard-azure-action@3ad80a5e4a2d5a8f342615637072f21b687320ce # v1.2.1
3737
with:
3838
environment: prod
3939
api-name: ${{ env.API_NAME }}

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Repo
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
1515
with:
1616
fetch-depth: 0
1717

1818
- name: Setup Node.js environment
19-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
2020
with:
2121
node-version-file: ".node-version"
2222
cache: "yarn"

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3.9"
22
services:
33
cosmos-db:
4-
image: mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator
4+
image: mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator@sha256:171833ee465358fbbfdb5dc9af523ece5ca747dbf524a5c434e0c6773eaef0e0
55
mem_limit: 3G
66
cpu_count: 2
77
tty: true
@@ -18,7 +18,7 @@ services:
1818
- cosmos-db-volume:/data/db
1919

2020
storage:
21-
image: mcr.microsoft.com/azure-storage/azurite
21+
image: mcr.microsoft.com/azure-storage/azurite@sha256:47a392f1c93a6b639999fc505dcae348e350183b47f2a7526c765ddd7fa56e0e
2222
command: "azurite -l /data --blobHost 0.0.0.0 --queueHost 0.0.0.0 --skipApiVersionCheck"
2323
ports:
2424
- 10000:10000

0 commit comments

Comments
 (0)