Skip to content

Commit

Permalink
Merge pull request #1 from coopTilleuls/fix/deprecated-set-output
Browse files Browse the repository at this point in the history
fix: update dependent action for setOutput deprecation
  • Loading branch information
husimo-tilleuls authored May 10, 2023
2 parents 3436611 + 3763ac9 commit d90c32e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
if [ -n "$exit" ]; then exit 1; fi
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3.5.2

- name: Docker meta
id: meta
Expand All @@ -44,7 +44,7 @@ runs:
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2.5.0

- name: Login to registry
uses: docker/login-action@v1
Expand All @@ -58,7 +58,7 @@ runs:
# scan
- name: Build image localy first
if: inputs.SECURITY_SCAN == 'true'
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4.0.0
id: docker_build
with:
context: ${{inputs.BUILD_CONTEXT}}
Expand Down Expand Up @@ -88,7 +88,7 @@ runs:

# if SECURITY_SCAN was done, image is already build, else we build it now
- name: Build image and push to registry
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4.0.0
id: docker_build_push
with:
context: ${{inputs.BUILD_CONTEXT}}
Expand Down

0 comments on commit d90c32e

Please sign in to comment.