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 5 to 6 #323

Merged
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
steps:
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@v1

Check failure on line 48 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 the runner of "actions-rs/toolchain@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/release.yaml:48:15: the runner of "actions-rs/toolchain@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
profile: minimal
toolchain: stable
Expand All @@ -66,7 +66,7 @@
environment: crate
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1

Check failure on line 69 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 the runner of "actions-rs/toolchain@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/release.yaml:69:15: the runner of "actions-rs/toolchain@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
toolchain: stable
override: true
Expand Down Expand Up @@ -96,7 +96,7 @@
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/build-push-action@v5
- uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
Expand All @@ -110,7 +110,7 @@
tag: ${{ steps.info.outputs.tag }}
steps:
- id: info
run: echo tag=$(echo $GITHUB_REF | cut -d / -f 3 | sed -e 's/v//') >> $GITHUB_OUTPUT

Check failure on line 113 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2046:warning:1:10: Quote this to prevent word splitting [shellcheck] Raw Output: .github/workflows/release.yaml:113:9: shellcheck reported issue in this script: SC2046:warning:1:10: Quote this to prevent word splitting [shellcheck]

Check failure on line 113 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:17: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: .github/workflows/release.yaml:113:9: shellcheck reported issue in this script: SC2086:info:1:17: Double quote to prevent globbing and word splitting [shellcheck]

Check failure on line 113 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:66: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: .github/workflows/release.yaml:113:9: shellcheck reported issue in this script: SC2086:info:1:66: Double quote to prevent globbing and word splitting [shellcheck]

publish:
runs-on: ubuntu-latest
Expand Down
Loading