Skip to content

Commit 9f2f1e4

Browse files
authored
pipx/aws sam cli 1.148.0 (#795)
* ci(docker): improve performance * ci(github): improve performance * build(deps): bump aws-sam-cli from 1.146.0 to 1.148.0
1 parent 26e6d9c commit 9f2f1e4

File tree

10 files changed

+20
-1
lines changed

10 files changed

+20
-1
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
- name: Checkout repository
4747
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4848
with:
49+
fetch-depth: 1
4950
persist-credentials: false
5051

5152
# Add any setup steps before running the `github/codeql-action/init` action.

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- name: "Checkout Repository"
1515
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1616
with:
17+
fetch-depth: 1
1718
persist-credentials: false
1819
- name: "Dependency Review"
1920
uses: actions/dependency-review-action@3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261 # v4.8.2

.github/workflows/devskim.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
- name: Checkout code
3131
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3232
with:
33+
fetch-depth: 1
3334
persist-credentials: false
3435
- name: Run DevSkim scanner
3536
uses: microsoft/DevSkim-Action@4b5047945a44163b94642a1cecc0d93a3f428cc6 # v1.0.16

.github/workflows/docker-build-push.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ on:
1010

1111
permissions: {}
1212

13+
env:
14+
DOCKER_BUILDKIT: 1
15+
1316
jobs:
1417
docker-build-push:
1518
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
@@ -28,6 +31,7 @@ jobs:
2831
echo "IMAGE=${GITHUB_REPOSITORY#*/docker-}" >> "${GITHUB_ENV}"
2932
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3033
with:
34+
fetch-depth: 1
3135
persist-credentials: false
3236
- name: Set SOURCE_DATE_EPOCH
3337
run: |
@@ -71,6 +75,8 @@ jobs:
7175
provenance: mode=max
7276
tags: ${{ steps.meta.outputs.tags }}
7377
labels: ${{ steps.meta.outputs.labels }}
78+
cache-from: type=gha
79+
cache-to: type=gha,mode=max
7480
- name: Sign the Docker image
7581
if: github.ref == 'refs/heads/main'
7682
working-directory: ${{ env.IMAGE }}

.github/workflows/docker-release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77

88
permissions: {}
99

10+
env:
11+
DOCKER_BUILDKIT: 1
12+
1013
jobs:
1114
docker-release:
1215
if: startsWith(github.ref, 'refs/tags/')
@@ -25,6 +28,7 @@ jobs:
2528
echo "IMAGE=${GITHUB_REPOSITORY#*/docker-}" >> "${GITHUB_ENV}"
2629
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2730
with:
31+
fetch-depth: 1
2832
persist-credentials: false
2933
- name: Set SOURCE_DATE_EPOCH
3034
run: |
@@ -62,6 +66,8 @@ jobs:
6266
provenance: mode=max
6367
tags: ${{ steps.meta.outputs.tags }}
6468
labels: ${{ steps.meta.outputs.labels }}
69+
cache-from: type=gha
70+
cache-to: type=gha,mode=max
6571
- name: Sign the Docker image
6672
working-directory: ${{ env.IMAGE }}
6773
env:

.github/workflows/dockerhub.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
echo "IMAGE=${GITHUB_REPOSITORY#*/docker-}" >> "${GITHUB_ENV}"
2727
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2828
with:
29+
fetch-depth: 1
2930
persist-credentials: false
3031
- name: Pull the ${{ matrix.tag }} ${{ matrix.platform }} image
3132
shell: bash

.github/workflows/msdo.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- name: Checkout code
2929
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3030
with:
31+
fetch-depth: 1
3132
persist-credentials: false
3233
- name: Run Microsoft Security DevOps scanner
3334
id: scan

.github/workflows/pipx-check-versions.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- name: Check out
2020
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2121
with:
22+
fetch-depth: 1
2223
persist-credentials: false
2324
- name: Set up Python
2425
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0

.github/workflows/scorecards.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- name: "Checkout code"
2929
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3030
with:
31+
fetch-depth: 1
3132
persist-credentials: false
3233
- name: "Run analysis"
3334
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3

aws-cli/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
aws-sam-cli==1.146.0
1+
aws-sam-cli==1.148.0
22
cfn-lint==1.41.0
33
cfn-policy-validator==0.0.36
44
checkov==3.2.494

0 commit comments

Comments
 (0)