mirror of
https://github.com/sethforprivacy/p2pool-docker.git
synced 2026-04-18 05:22:28 -04:00
Compare commits
14 Commits
bf406b66a8
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ea2462edf8 | ||
|
|
d30e72c868 | ||
|
|
943566c666 | ||
|
|
2afef48805 | ||
|
|
9c9a34f0d3 | ||
|
|
bd412b57f5 | ||
|
|
46a1067577 | ||
|
|
fd9cf843cf | ||
|
|
e883973c01 | ||
|
|
fa13d52fdb | ||
|
|
de5a18086b | ||
|
|
99e34b3579 | ||
|
|
21da5b959b | ||
|
|
f2476cbaaa |
11
.github/dependabot.yml
vendored
11
.github/dependabot.yml
vendored
@@ -1,11 +0,0 @@
|
|||||||
version: 2
|
|
||||||
updates:
|
|
||||||
# Maintain dependencies for GitHub Actions
|
|
||||||
- package-ecosystem: "github-actions"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
||||||
groups:
|
|
||||||
dependency-updates:
|
|
||||||
patterns:
|
|
||||||
- "*"
|
|
||||||
4
.github/workflows/build-image-on-push.yml
vendored
4
.github/workflows/build-image-on-push.yml
vendored
@@ -37,14 +37,14 @@ jobs:
|
|||||||
echo "DIGEST_NAME=amd64" >> $GITHUB_ENV
|
echo "DIGEST_NAME=amd64" >> $GITHUB_ENV
|
||||||
-
|
-
|
||||||
name: Set up Docker Buildx
|
name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3.12.0
|
uses: docker/setup-buildx-action@v4.0.0
|
||||||
-
|
-
|
||||||
name: Checkout repository
|
name: Checkout repository
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
-
|
-
|
||||||
name: Test build of image
|
name: Test build of image
|
||||||
id: build
|
id: build
|
||||||
uses: docker/build-push-action@v6.19.2
|
uses: docker/build-push-action@v7.1.0
|
||||||
with:
|
with:
|
||||||
push: false
|
push: false
|
||||||
load: true
|
load: true
|
||||||
|
|||||||
18
.github/workflows/update-image-on-push.yml
vendored
18
.github/workflows/update-image-on-push.yml
vendored
@@ -34,16 +34,16 @@ jobs:
|
|||||||
echo "DIGEST_NAME=amd64" >> $GITHUB_ENV
|
echo "DIGEST_NAME=amd64" >> $GITHUB_ENV
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v6
|
||||||
with:
|
with:
|
||||||
images: |
|
images: |
|
||||||
${{ env.GHCR_REPO }}
|
${{ env.GHCR_REPO }}
|
||||||
-
|
-
|
||||||
name: Set up Docker Buildx
|
name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3.12.0
|
uses: docker/setup-buildx-action@v4.0.0
|
||||||
-
|
-
|
||||||
name: Login to GitHub Container Registry
|
name: Login to GitHub Container Registry
|
||||||
uses: docker/login-action@v3.7.0
|
uses: docker/login-action@v4.1.0
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
@@ -53,7 +53,7 @@ jobs:
|
|||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
-
|
-
|
||||||
name: Build and and push by digest
|
name: Build and and push by digest
|
||||||
uses: docker/build-push-action@v6.19.2
|
uses: docker/build-push-action@v7.1.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
|
||||||
@@ -68,7 +68,7 @@ jobs:
|
|||||||
touch "${{ runner.temp }}/digests/${digest#sha256:}"
|
touch "${{ runner.temp }}/digests/${digest#sha256:}"
|
||||||
|
|
||||||
- name: Upload digest
|
- name: Upload digest
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: digests-${{ env.DIGEST_NAME }}
|
name: digests-${{ env.DIGEST_NAME }}
|
||||||
path: ${{ runner.temp }}/digests/*
|
path: ${{ runner.temp }}/digests/*
|
||||||
@@ -81,21 +81,21 @@ jobs:
|
|||||||
- build
|
- build
|
||||||
steps:
|
steps:
|
||||||
- name: Download digests
|
- name: Download digests
|
||||||
uses: actions/download-artifact@v7
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
path: ${{ runner.temp }}/digests
|
path: ${{ runner.temp }}/digests
|
||||||
pattern: digests-*
|
pattern: digests-*
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
|
|
||||||
- name: Login to GHCR
|
- name: Login to GHCR
|
||||||
uses: docker/login-action@v3.7.0
|
uses: docker/login-action@v4.1.0
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3.12.0
|
uses: docker/setup-buildx-action@v4.0.0
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
@@ -105,7 +105,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v6
|
||||||
with:
|
with:
|
||||||
images: |
|
images: |
|
||||||
${{ env.GHCR_REPO }}
|
${{ env.GHCR_REPO }}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
ARG P2POOL_BRANCH=v4.13
|
ARG P2POOL_BRANCH=v4.14
|
||||||
|
|
||||||
# Select latest Ubuntu LTS for the build image base
|
# Select latest Ubuntu LTS for the build image base
|
||||||
FROM ubuntu:latest as build
|
FROM ubuntu:latest as build
|
||||||
|
|||||||
Reference in New Issue
Block a user