Skip to content

Commit 621edf3

Browse files
authored
Merge pull request #672 from kishen-v/update-wf-deps
Update and setup dependabot for github actions
2 parents cae221a + ffe15b7 commit 621edf3

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@ updates:
99
directory: "/"
1010
schedule:
1111
interval: "weekly"
12+
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
interval: "monthly"

.github/workflows/docker-build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ jobs:
2121
packages: write
2222
steps:
2323
- name: Checkout sources
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v4
2525

2626
# Action reference: https://github.com/docker/setup-qemu-action
2727
- name: Set up QEMU (for docker buildx)
28-
uses: docker/setup-qemu-action@v1
28+
uses: docker/setup-qemu-action@v3
2929

3030
# Action reference: https://github.com/docker/setup-buildx-action
3131
- name: Set up Docker Buildx
32-
uses: docker/setup-buildx-action@v1
32+
uses: docker/setup-buildx-action@v3
3333

3434
# Action reference: https://github.com/docker/login-action
3535
- name: Login to GitHub Container Registry
36-
uses: docker/login-action@v1
36+
uses: docker/login-action@v3
3737
with:
3838
registry: ghcr.io
3939
username: ${{ github.repository_owner }}
@@ -43,13 +43,13 @@ jobs:
4343
# Action reference: https://github.com/ASzc/change-string-case-action
4444
- id: repository_owner
4545
name: lower case repository owner name
46-
uses: ASzc/change-string-case-action@v1
46+
uses: ASzc/change-string-case-action@v6
4747
with:
4848
string: ${{ github.repository_owner }}
4949

5050
# Action reference: https://github.com/docker/build-push-action
5151
- name: Build container
52-
uses: docker/build-push-action@v2
52+
uses: docker/build-push-action@v5
5353
with:
5454
context: ./build/base
5555
platforms: linux/amd64,linux/ppc64le

0 commit comments

Comments
 (0)