Skip to content

Commit f3d412c

Browse files
ci(deps): bump the github-actions-minor-patch group across 1 directory with 2 updates (#95)
Bumps the github-actions-minor-patch group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [docker/login-action](https://github.com/docker/login-action). Updates `actions/checkout` from 7.0.0 to 7.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@9c091bb...3d3c42e) Updates `docker/login-action` from 4.4.0 to 4.5.1 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@af1e73f...abd2ef4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-minor-patch - dependency-name: docker/login-action dependency-version: 4.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-minor-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2dcd65e commit f3d412c

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/_docker-pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383

8484
steps:
8585
- name: Checkout
86-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
86+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
8787
with:
8888
ref: ${{ inputs.ref }}
8989
persist-credentials: false
@@ -98,7 +98,7 @@ jobs:
9898
# GHCR login runs before the build — needed to pull ghcr.io/astral-sh/uv.
9999
- name: Login to GHCR
100100
if: inputs.push
101-
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
101+
uses: docker/login-action@abd2ef45e78c5afb21d64d4ca52ee8550d9572c7 # v4.5.1
102102
with:
103103
registry: ghcr.io
104104
username: ${{ github.actor }}
@@ -161,7 +161,7 @@ jobs:
161161
# with public image pulls during the build step.
162162
- name: Login to Docker Hub
163163
if: inputs.push
164-
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
164+
uses: docker/login-action@abd2ef45e78c5afb21d64d4ca52ee8550d9572c7 # v4.5.1
165165
with:
166166
username: ${{ secrets.DOCKERHUB_USERNAME }}
167167
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/core-tool-watch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
contents: read
8181
issues: write # upsert the drift tracking issue on scheduled runs
8282
steps:
83-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
83+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
8484
with:
8585
fetch-depth: 1
8686
persist-credentials: false
@@ -91,7 +91,7 @@ jobs:
9191
# already-merged, already-scored lockfile versions -- never from the PR
9292
# under review, whose freshly-bumped packages are the very thing being
9393
# judged. On push/schedule runs both checkouts are identical.
94-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
94+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
9595
with:
9696
ref: main
9797
path: .scan-env

.github/workflows/dependency-review.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
workflow_or_action_changed: ${{ steps.diff.outputs.workflow_or_action_changed }}
7676
is_trusted: ${{ steps.trust.outputs.is_trusted }}
7777
steps:
78-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
78+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
7979
with:
8080
fetch-depth: 0
8181
persist-credentials: false
@@ -165,7 +165,7 @@ jobs:
165165
permissions:
166166
contents: read
167167
steps:
168-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
168+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
169169
with:
170170
fetch-depth: 1
171171
persist-credentials: false
@@ -226,7 +226,7 @@ jobs:
226226
permissions:
227227
contents: read
228228
steps:
229-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
229+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
230230
with:
231231
fetch-depth: 1
232232
persist-credentials: false

.github/workflows/publish-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
echo "clean=$CLEAN" >> "$GITHUB_OUTPUT"
8585
echo "ref=refs/tags/$REF_TAG" >> "$GITHUB_OUTPUT"
8686
87-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
87+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
8888
with:
8989
ref: ${{ steps.version.outputs.ref }}
9090
persist-credentials: false
@@ -202,14 +202,14 @@ jobs:
202202
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
203203

204204
- name: Login to GHCR
205-
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
205+
uses: docker/login-action@abd2ef45e78c5afb21d64d4ca52ee8550d9572c7 # v4.5.1
206206
with:
207207
registry: ghcr.io
208208
username: ${{ github.actor }}
209209
password: ${{ github.token }}
210210

211211
- name: Login to Docker Hub
212-
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
212+
uses: docker/login-action@abd2ef45e78c5afb21d64d4ca52ee8550d9572c7 # v4.5.1
213213
with:
214214
username: ${{ secrets.DOCKERHUB_USERNAME }}
215215
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
timeout-minutes: 20
3434
steps:
35-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
35+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3636
with:
3737
fetch-depth: 1
3838
persist-credentials: false

0 commit comments

Comments
 (0)