diff --git a/.github/actions/docker-build-push/action.yml b/.github/actions/docker-build-push/action.yml index 118b2d63..6e9ccc30 100644 --- a/.github/actions/docker-build-push/action.yml +++ b/.github/actions/docker-build-push/action.yml @@ -69,7 +69,6 @@ runs: .map(ref => `type=registry,ref=${{ inputs.registry }}/${{ inputs.name }}:branch-${ref}`).join('\r\n'); console.log(`Will use cached images from ${JSON.stringify(cacheFrom, null, 2)}`); core.setOutput("cacheFrom", cacheFrom); - - name: Build and push uses: docker/build-push-action@v5 with: diff --git a/.github/actions/get-github-ref-names/action.yml b/.github/actions/get-github-ref-names/action.yml index 137232f0..91787ba1 100644 --- a/.github/actions/get-github-ref-names/action.yml +++ b/.github/actions/get-github-ref-names/action.yml @@ -19,7 +19,7 @@ runs: steps: - name: Calculate Refs id: refs - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | let eventName = context.eventName; @@ -48,5 +48,4 @@ runs: core.setOutput("headRef", head); core.setOutput("baseRef", base); - console.log(`Calculated the following ${JSON.stringify({eventName,base,head}, null, 2)}`); -# bump3 + console.log(`Calculated the following ${JSON.stringify({eventName,base,head}, null, 2)}`); \ No newline at end of file