Skip to content

Commit 2b40b80

Browse files
author
Davide Melfi
committed
chore: putting permission read
1 parent 72f658e commit 2b40b80

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
11
name: dockerized-test
22

3+
permissions:
4+
contents: read
5+
36
on:
47
push:
58
branches: [ main ]
69
pull_request:
710
branches: [ '*' ]
811
workflow_dispatch:
912

13+
1014
jobs:
1115
dockerized-test:
1216
runs-on: ubuntu-latest
1317

1418
steps:
15-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v6
1620

1721
- name: Build the image
1822
run: docker build . -t local/test -f Dockerfile.rie
1923

2024
- name: Run tests
2125
uses: aws/containerized-test-runner-for-aws-lambda@v1
2226
with:
23-
suiteFileArray: '["./tests/dockerized/*.json"]'
27+
suiteFileArray: '["./test/dockerized/*.json"]'
2428
dockerImageName: 'local/test'

0 commit comments

Comments
 (0)