Merge pull request #45 from pamelafox/dependabot/github_actions/github-actions-f039b2dc45
Browse files
.github/workflows/azure-bicep-validate.yaml
CHANGED
@@ -17,14 +17,14 @@ jobs:
|
|
17 |
steps:
|
18 |
- name: Checkout PR
|
19 |
if: ${{ github.event_name == 'pull_request'}}
|
20 |
-
uses: actions/checkout@
|
21 |
with:
|
22 |
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
23 |
ref: ${{ github.event.pull_request.head.ref }}
|
24 |
|
25 |
- name: Checkout branch
|
26 |
if: ${{ github.event_name == 'push'}}
|
27 |
-
uses: actions/checkout@
|
28 |
|
29 |
- name: Build Bicep
|
30 |
uses: azure/CLI@v1
|
|
|
17 |
steps:
|
18 |
- name: Checkout PR
|
19 |
if: ${{ github.event_name == 'pull_request'}}
|
20 |
+
uses: actions/checkout@v4
|
21 |
with:
|
22 |
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
23 |
ref: ${{ github.event.pull_request.head.ref }}
|
24 |
|
25 |
- name: Checkout branch
|
26 |
if: ${{ github.event_name == 'push'}}
|
27 |
+
uses: actions/checkout@v4
|
28 |
|
29 |
- name: Build Bicep
|
30 |
uses: azure/CLI@v1
|
.github/workflows/azure-dev.yaml
CHANGED
@@ -20,7 +20,7 @@ jobs:
|
|
20 |
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
|
21 |
steps:
|
22 |
- name: Checkout
|
23 |
-
uses: actions/checkout@
|
24 |
|
25 |
- name: Install azd
|
26 |
uses: Azure/[email protected]
|
|
|
20 |
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
|
21 |
steps:
|
22 |
- name: Checkout
|
23 |
+
uses: actions/checkout@v4
|
24 |
|
25 |
- name: Install azd
|
26 |
uses: Azure/[email protected]
|
.github/workflows/check.yaml
CHANGED
@@ -16,9 +16,9 @@ jobs:
|
|
16 |
# needed because the postgres container does not provide a healthcheck
|
17 |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
18 |
steps:
|
19 |
-
- uses: actions/checkout@
|
20 |
- name: Set up Python 3
|
21 |
-
uses: actions/setup-python@
|
22 |
with:
|
23 |
python-version: 3.9
|
24 |
- name: Install dependencies
|
|
|
16 |
# needed because the postgres container does not provide a healthcheck
|
17 |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
18 |
steps:
|
19 |
+
- uses: actions/checkout@v4
|
20 |
- name: Set up Python 3
|
21 |
+
uses: actions/setup-python@v5
|
22 |
with:
|
23 |
python-version: 3.9
|
24 |
- name: Install dependencies
|