Skip to content

Commit 14dcd9b

Browse files
authored
Merge branch 'main' into dependabot/terraform/code/infra/azure/azapi-1.11.0
2 parents 087b2ee + 83f61c3 commit 14dcd9b

20 files changed

+286
-390
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,17 @@ updates:
2424
- "pip"
2525
- "dependencies"
2626

27+
# Maintain dependencies for pip
28+
- package-ecosystem: "pip"
29+
directory: "/"
30+
schedule:
31+
interval: "weekly"
32+
day: "sunday"
33+
time: "10:00"
34+
labels:
35+
- "pip"
36+
- "dependencies"
37+
2738
# Maintain dependencies for Terraform
2839
- package-ecosystem: "terraform"
2940
directory: "/code/infra"

.github/workflows/_containerTemplate.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Docker Template
1+
name: Container Template
22

33
on:
44
workflow_call:
@@ -54,7 +54,7 @@ jobs:
5454

5555
# Install cosign
5656
- name: Install cosign
57-
uses: sigstore/cosign-installer@v3.2.0
57+
uses: sigstore/cosign-installer@v3.3.0
5858
id: install_cosign
5959
if: github.event_name != 'pull_request'
6060
with:
@@ -83,7 +83,7 @@ jobs:
8383
# Extract Metadata (tags, labels)
8484
- name: Extract Metadata
8585
id: metadata
86-
uses: docker/metadata-action@v5.0.0
86+
uses: docker/metadata-action@v5.4.0
8787
with:
8888
context: workflow
8989
images: |
@@ -97,7 +97,7 @@ jobs:
9797
# Build and Push Docker Image with Buildx
9898
- name: Build and push Docker image
9999
id: build_push
100-
uses: docker/build-push-action@v5.0.0
100+
uses: docker/build-push-action@v5.1.0
101101
with:
102102
context: ${{ inputs.working_directory }}
103103
file: ${{ inputs.working_directory }}/Dockerfile
@@ -111,7 +111,7 @@ jobs:
111111
# This step uses the identity token to provision an ephemeral certificate against the sigstore community Fulcio instance.
112112
- name: Sign container image
113113
id: sign
114-
if: ${{ github.event_name != 'pull_request' }}
114+
if: github.event_name == 'release'
115115
run: |
116116
cosign sign --yes "${TAGS}@${DIGEST}"
117117
env:

.github/workflows/_functionAppDeployTemplate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
# Setup Python 3.10
5252
- name: Setup Python 3.10
5353
id: python_setup
54-
uses: actions/setup-python@v4
54+
uses: actions/setup-python@v5
5555
with:
5656
python-version: ${{ inputs.python_version }}
5757
cache: "pip"

.github/workflows/_functionAppTestTemplate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# Setup Python 3.10
2929
- name: Setup Python 3.10
3030
id: python_setup
31-
uses: actions/setup-python@v4
31+
uses: actions/setup-python@v5
3232
with:
3333
python-version: ${{ inputs.python_version }}
3434
cache: "pip"

.github/workflows/_terraformApplyTemplate.yml

Lines changed: 0 additions & 88 deletions
This file was deleted.

0 commit comments

Comments
 (0)