mirror of
https://github.com/vx3r/wg-gen-web.git
synced 2025-04-02 16:46:52 +00:00
Bump actions and enable dependabot
* Enable dependabot for actions and go * Bump actions
This commit is contained in:
parent
4fd1e34f5f
commit
ebdd5eb8b7
@ -5,7 +5,16 @@
|
|||||||
|
|
||||||
version: 2
|
version: 2
|
||||||
updates:
|
updates:
|
||||||
- package-ecosystem: "" # See documentation for possible values
|
- package-ecosystem: 'github-actions'
|
||||||
directory: "/" # Location of package manifests
|
directory: '/'
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: 'weekly'
|
||||||
|
groups:
|
||||||
|
github-actions:
|
||||||
|
patterns:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
- package-ecosystem: 'gomod'
|
||||||
|
directory: '/'
|
||||||
|
schedule:
|
||||||
|
interval: 'weekly'
|
12
.github/workflows/dockerimage.yml
vendored
12
.github/workflows/dockerimage.yml
vendored
@ -16,7 +16,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
-
|
-
|
||||||
name: Set Prepare
|
name: Set Prepare
|
||||||
id: prep
|
id: prep
|
||||||
@ -41,19 +41,19 @@ jobs:
|
|||||||
echo ::set-output name=sha_short::$(git rev-parse --short HEAD)
|
echo ::set-output name=sha_short::$(git rev-parse --short HEAD)
|
||||||
-
|
-
|
||||||
name: Set up QEMU
|
name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v1
|
uses: docker/setup-qemu-action@v3
|
||||||
-
|
-
|
||||||
name: Set up Docker Buildx
|
name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v3
|
||||||
-
|
-
|
||||||
name: Login to DockerHub
|
name: Login to DockerHub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_LOGIN_USERNAME }}
|
username: ${{ secrets.DOCKER_LOGIN_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_LOGIN_PASSWORD }}
|
password: ${{ secrets.DOCKER_LOGIN_PASSWORD }}
|
||||||
-
|
-
|
||||||
name: Build and push
|
name: Build and push
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||||||
@ -64,4 +64,4 @@ jobs:
|
|||||||
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
|
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
|
||||||
org.opencontainers.image.revision=${{ github.sha }}
|
org.opencontainers.image.revision=${{ github.sha }}
|
||||||
build-args: |
|
build-args: |
|
||||||
COMMIT=${{ steps.prep.outputs.sha_short }}
|
COMMIT=${{ steps.prep.outputs.sha_short }}
|
||||||
|
Loading…
Reference in New Issue
Block a user