dependabot[bot] commited on
Commit
8bed51e
·
unverified ·
1 Parent(s): be20edb

Bump the github-actions group with 2 updates

Browse files

Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python).


Updates `actions/checkout` from 2 to 4
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v4)

Updates `actions/setup-python` from 3 to 5
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v3...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
- dependency-name: actions/setup-python
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <[email protected]>

.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@v3
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@v2
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@v2
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@v3
20
  - name: Set up Python 3
21
- uses: actions/setup-python@v3
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