Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stakater/Forecastle
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 242e583de82a799ce40f1043f4e6dd63cb8828dc
Choose a base ref
..
head repository: stakater/Forecastle
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 674597cb193300f217a2e1b5e0e09317e0bfe959
Choose a head ref
Showing with 4 additions and 4 deletions.
  1. +1 −1 .github/workflows/pull_request.yaml
  2. +1 −1 .github/workflows/push-pr-image.yaml
  3. +2 −2 .github/workflows/push.yaml
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
@@ -57,7 +57,7 @@ jobs:
# To identify any broken changes in dockerfiles or dependencies
- name: Build image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ${{ env.DOCKER_FILE_PATH }}
2 changes: 1 addition & 1 deletion .github/workflows/push-pr-image.yaml
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ jobs:
password: ${{secrets.GITHUB_TOKEN}}

- name: Build and Push image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ${{ env.DOCKER_FILE_PATH }}
4 changes: 2 additions & 2 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
@@ -92,7 +92,7 @@ jobs:
echo GHCR_IMAGE_REPOSITORY=${{env.REGISTRY}}/$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
- name: Build and push image to ghcr registry
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ${{ env.DOCKER_FILE_PATH }}
@@ -119,7 +119,7 @@ jobs:
echo IMAGE_REPOSITORY=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
- name: Build and push Image to DockerHub registry
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ${{ env.DOCKER_FILE_PATH }}