Skip to content

Commit

Permalink
Merge pull request #1 from ls1admin/ci/add-dependabot
Browse files Browse the repository at this point in the history
Add Dependabot configuration and update gh actions
  • Loading branch information
robertjndw authored Apr 29, 2024
2 parents a8ee63c + bb7927f commit b2854f9
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
46 changes: 18 additions & 28 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,51 +16,41 @@ jobs:
name: Build and Push the Docker Images
runs-on: ubuntu-latest
steps:
- name: Compute Tag
uses: actions/github-script@v6
id: compute-tag
- name: Checkout
uses: actions/checkout@v4
with:
result-encoding: string
script: |
if (context.eventName === "pull_request") {
return "pr-" + context.issue.number;
}
if (context.eventName === "push") {
if (context.ref.startsWith("refs/tags/")) {
return context.ref.slice(10);
}
if (context.ref === "refs/heads/main") {
return "latest";
}
}
return "FALSE";
- uses: actions/checkout@v2
fetch-depth: 1

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ github.repository }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=ref,event=pr
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
if: ${{ steps.compute-tag.outputs.result != 'FALSE' }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
with:
platforms: all

- name: Install Buildx
id: buildx
uses: docker/setup-buildx-action@master
with:
version: latest
uses: docker/setup-buildx-action@v3

- name: Build Image and Push to GitHub Container Registry
uses: docker/build-push-action@v2
if: ${{ steps.compute-tag.outputs.result != 'FALSE' }}
uses: docker/build-push-action@v5
with:
context: .
tags: |
ghcr.io/ls1admin/bitbucket-archiver:${{ steps.compute-tag.outputs.result }}
tags: ${{ steps.meta.outputs.tags }}
platforms: linux/amd64,linux/arm64/v8
push: true

0 comments on commit b2854f9

Please sign in to comment.