Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Bump docker/build-push-action from 4 to 5 #154

Merged
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,16 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build UI
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: opendc-web/opendc-web-ui
file: opendc-web/opendc-web-ui/Dockerfile
- name: Build Web Server
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: opendc-web/opendc-web-server/Dockerfile
- name: Build Runner
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: opendc-web/opendc-web-runner/Dockerfile
build-docs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push to Docker Hub
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
file: opendc-web/opendc-web-runner/Dockerfile
Expand All @@ -51,7 +51,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push to Docker Hub
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
file: opendc-web/opendc-web-server/Dockerfile
Expand All @@ -78,7 +78,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push to Docker Hub
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
context: opendc-web/opendc-web-ui
Expand Down
Loading