Skip to content

Commit 57a9012

Browse files
authored
Merge pull request #42 from advanced-security/dependabot/github_actions/main/production-dependencies-46c441f9fc
deps: bump the production-dependencies group with 8 updates
2 parents 47e2fd9 + 6baa24d commit 57a9012

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.github/workflows/container-publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ jobs:
4747
uses: actions/checkout@v4
4848

4949
- name: Set up Docker Buildx
50-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
50+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
5151

5252
- name: Log in to the Container registry
53-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
53+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
5454
with:
5555
registry: ${{ env.REGISTRY }}
5656
username: ${{ github.actor }}
5757
password: ${{ secrets.GITHUB_TOKEN }}
5858

5959
- name: Set Container Metadata
60-
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81
60+
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804
6161
id: meta
6262
with:
6363
images: ${{ env.REGISTRY }}/${{ inputs.container-name }}
@@ -71,7 +71,7 @@ jobs:
7171
type=semver,pattern=v{{major}}.{{minor}},value=${{ inputs.version }}
7272
7373
- name: Build & Publish Container ${{ inputs.container-name }}
74-
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
74+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
7575
id: build
7676
with:
7777
file: "${{ inputs.container-file }}"
@@ -103,12 +103,12 @@ jobs:
103103
- name: Checkout repository
104104
uses: actions/checkout@v4
105105

106-
- uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7.0
106+
- uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
107107
with:
108108
cosign-release: 'v2.4.1'
109109

110110
- name: Log in to the Container registry
111-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
111+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
112112
with:
113113
registry: ${{ env.REGISTRY }}
114114
username: ${{ github.actor }}

.github/workflows/container-security.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
uses: actions/checkout@v4
3939

4040
- name: Set up Docker Buildx
41-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
41+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
4242

4343
- name: Build Initial Container
44-
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
44+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
4545
id: build
4646
with:
4747
file: "${{ inputs.container-file }}"
@@ -52,7 +52,7 @@ jobs:
5252

5353
# Scan the image for vulnerabilities
5454
- name: Run the Anchore / Grype scan action
55-
uses: anchore/scan-action@f2ba85e044c8f5e5014c9a539328a9c78d3bfa49 # v5.2.1
55+
uses: anchore/scan-action@7c05671ae9be166aeb155bad2d7df9121823df32 # v6.1.0
5656
id: scan
5757
with:
5858
image: localbuild/testimage:latest

.github/workflows/python-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
fi
5757
5858
github-release:
59-
uses: advanced-security/reusable-workflows/.github/workflows/release.yml@v0.2.0
59+
uses: advanced-security/reusable-workflows/.github/workflows/release.yml@v0.3.0
6060
needs: [ version-changes ]
6161
if: ${{ needs.version-changes.outputs.release == 'true' }}
6262
secrets: inherit

.github/workflows/python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,22 @@ on:
2525
jobs:
2626
# Run the tests on all supported versions of Python
2727
testing:
28-
uses: advanced-security/reusable-workflows/.github/workflows/python-testing.yml@v0.2.0
28+
uses: advanced-security/reusable-workflows/.github/workflows/python-testing.yml@v0.3.0
2929
secrets: inherit
3030
with:
3131
versions: ${{ inputs.versions }}
3232

3333
# Run linters on the codebase
3434
linting:
35-
uses: advanced-security/reusable-workflows/.github/workflows/python-linting.yml@v0.2.0
35+
uses: advanced-security/reusable-workflows/.github/workflows/python-linting.yml@v0.3.0
3636
needs: [ testing ]
3737
secrets: inherit
3838
with:
3939
versions: ${{ inputs.versions }}
4040

4141
# Vendor the dependencies into the repository if needed
4242
vendoring:
43-
uses: advanced-security/reusable-workflows/.github/workflows/python-vendor.yml@v0.2.0
43+
uses: advanced-security/reusable-workflows/.github/workflows/python-vendor.yml@v0.3.0
4444
needs: [ testing, linting ]
4545
if: ${{ inputs.vendor == 'true' }}
4646
secrets: inherit
@@ -50,7 +50,7 @@ jobs:
5050

5151
# Release a new version of the package
5252
release:
53-
uses: advanced-security/reusable-workflows/.github/workflows/python-release.yml@v0.2.0
53+
uses: advanced-security/reusable-workflows/.github/workflows/python-release.yml@v0.3.0
5454
needs: [ testing, linting ]
5555
secrets: inherit
5656
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: "Checkout"
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: "Patch Release Me"
3636
uses: 42ByteLabs/patch-release-me@f950db6bce09f2156a5f2d1cc86ac60ed1663a9e # 0.5.3

.github/workflows/self-dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ permissions:
1919

2020
jobs:
2121
dependency-review:
22-
uses: advanced-security/reusable-workflows/.github/workflows/dependency-review.yml@v0.2.0
22+
uses: advanced-security/reusable-workflows/.github/workflows/dependency-review.yml@v0.3.0
2323
secrets: inherit

0 commit comments

Comments
 (0)