Compare commits

...

4 Commits

Author SHA1 Message Date
Seth For Privacy
ec715061c0 Allow manual Actions runs 2025-02-19 15:30:05 -05:00
Seth For Privacy
90af90e29a Fix p2pool version tag images 2025-02-19 15:29:20 -05:00
Seth For Privacy
9b66c26a8d Merge pull request #104 from sethforprivacy/dependabot/github_actions/dependency-updates-f02b80db45
Bump docker/build-push-action from 6.13.0 to 6.14.0 in the dependency-updates group
2025-02-19 15:27:58 -05:00
dependabot[bot]
ba800e4da7 Bump docker/build-push-action in the dependency-updates group
Bumps the dependency-updates group with 1 update: [docker/build-push-action](https://github.com/docker/build-push-action).


Updates `docker/build-push-action` from 6.13.0 to 6.14.0
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v6.13.0...v6.14.0)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependency-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-19 20:02:59 +00:00
2 changed files with 10 additions and 6 deletions

View File

@@ -44,7 +44,7 @@ jobs:
- -
name: Test build of image name: Test build of image
id: build id: build
uses: docker/build-push-action@v6.13.0 uses: docker/build-push-action@v6.14.0
with: with:
push: false push: false
load: true load: true

View File

@@ -6,6 +6,7 @@ on:
- main - main
paths: paths:
- 'Dockerfile' - 'Dockerfile'
workflow_dispatch:
env: env:
GHCR_REPO: ghcr.io/${{ github.repository_owner }}/p2pool GHCR_REPO: ghcr.io/${{ github.repository_owner }}/p2pool
@@ -37,9 +38,6 @@ jobs:
with: with:
images: | images: |
${{ env.GHCR_REPO }} ${{ env.GHCR_REPO }}
-
name: Get p2pool release tag
run: echo P2POOL_TAG="$(awk -F '=' '/P2POOL_BRANCH=/ {print $2}' Dockerfile)" >> $GITHUB_ENV
- -
name: Set up Docker Buildx name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.9.0 uses: docker/setup-buildx-action@v3.9.0
@@ -55,7 +53,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- -
name: Build and and push by digest name: Build and and push by digest
uses: docker/build-push-action@v6.13.0 uses: docker/build-push-action@v6.14.0
id: build id: build
with: with:
outputs: type=image,"name=${{ env.GHCR_REPO }}",push-by-digest=true,name-canonical=true,push=true outputs: type=image,"name=${{ env.GHCR_REPO }}",push-by-digest=true,name-canonical=true,push=true
@@ -99,6 +97,12 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.9.0 uses: docker/setup-buildx-action@v3.9.0
- name: Checkout repository
uses: actions/checkout@v4
- name: Get p2pool release tag
run: echo P2POOL_TAG="$(awk -F '=' '/P2POOL_BRANCH=/ {print $2}' Dockerfile)" >> $GITHUB_ENV
- name: Docker meta - name: Docker meta
id: meta id: meta
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
@@ -108,7 +112,7 @@ jobs:
tags: | tags: |
type=sha type=sha
type=raw,value=latest,enable={{is_default_branch}} type=raw,value=latest,enable={{is_default_branch}}
type=semver,pattern={{version}},value=${{ env.P2POOL_TAG }} type=raw,value=${{ env.P2POOL_TAG }}
- name: Create manifest list and push - name: Create manifest list and push
working-directory: ${{ runner.temp }}/digests working-directory: ${{ runner.temp }}/digests