Skip to content

Commit

Permalink
Update and setup dependabot for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kishen-v committed May 28, 2024
1 parent e12692f commit ffe15b7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ updates:
directory: "/"
schedule:
interval: "weekly"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
12 changes: 6 additions & 6 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ jobs:
packages: write
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

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

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

# Action reference: https://github.com/docker/login-action
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -43,13 +43,13 @@ jobs:
# Action reference: https://github.com/ASzc/change-string-case-action
- id: repository_owner
name: lower case repository owner name
uses: ASzc/change-string-case-action@v1
uses: ASzc/change-string-case-action@v6
with:
string: ${{ github.repository_owner }}

# Action reference: https://github.com/docker/build-push-action
- name: Build container
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: ./build/base
platforms: linux/amd64,linux/ppc64le
Expand Down

0 comments on commit ffe15b7

Please sign in to comment.