Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: echo ::set-output name=NAME::$(echo "${GITHUB_REPOSITORY,,}")

- name: Build image for tag
uses: docker/build-push-action@v3.0.0
uses: docker/build-push-action@v4.0.0
with:
push: true
context: ./pocketmine-mp
Expand All @@ -59,7 +59,7 @@ jobs:

- name: Build image for major tag
if: steps.channel.outputs.CHANNEL == 'stable'
uses: docker/build-push-action@v3.0.0
uses: docker/build-push-action@v4.0.0
with:
push: true
context: ./pocketmine-mp
Expand All @@ -72,7 +72,7 @@ jobs:

- name: Build image for minor tag
if: steps.channel.outputs.CHANNEL == 'stable'
uses: docker/build-push-action@v3.0.0
uses: docker/build-push-action@v4.0.0
with:
push: true
context: ./pocketmine-mp
Expand All @@ -85,7 +85,7 @@ jobs:

- name: Build image for latest tag
if: steps.channel.outputs.CHANNEL == 'stable'
uses: docker/build-push-action@v3.0.0
uses: docker/build-push-action@v4.0.0
with:
push: true
context: ./pocketmine-mp
Expand Down