Skip to content

Commit

Permalink
Dependabot updates
Browse files Browse the repository at this point in the history
Bump docker/login-action from 2 to 3
Bump docker/metadata-action from 4 to 5
Bump docker/setup-buildx-action from 2 to 3
Bump docker/build-push-action from 4 to 5

change set-output to $GITHUB_OUTPUT
add dependabot group update

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and TimoSairiala committed Nov 15, 2023
1 parent 9ec225d commit 7b7781c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
12 changes: 8 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@ updates:
interval: "daily"
groups:
baseimage-dependencies:
patterns:
- "tiiuae/fog-ros-sdk"
- "tiiuae/fog-ros-baseimage-builder"
- "tiiuae/fog-ros-baseimage"
patterns:
- "tiiuae/fog-ros-sdk"
- "tiiuae/fog-ros-baseimage-builder"
- "tiiuae/fog-ros-baseimage"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
groups:
github-actions:
patterns:
- "*"
6 changes: 3 additions & 3 deletions .github/workflows/tii-depthai-ctrl-coverity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
with:
submodules: recursive
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
driver: docker
- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile.coverity
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tii-depthai-ctrl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
matrix_json+="{\"platform\":\"$platform\"},"
done
matrix_json="${matrix_json%,}]}"
echo "::set-output name=matrix::$matrix_json"
echo "matrix=${matrix_json}" >> $GITHUB_OUTPUT
echo $matrix_json
build:
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY_IMAGE }}

Expand Down

0 comments on commit 7b7781c

Please sign in to comment.