Skip to content

Commit 6efabc3

Browse files
Bump the actions-merge group with 8 updates (#2)
Bumps the actions-merge group with 8 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `5` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `5` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `1` | `2` | | [docker/login-action](https://github.com/docker/login-action) | `2` | `3` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `2` | `3` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `4` | `6` | | [github/super-linter](https://github.com/github/super-linter) | `6` | `7` | Updates `actions/checkout` from 3 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v5) Updates `docker/metadata-action` from 4 to 5 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v4...v5) Updates `actions/download-artifact` from 3 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v5) Updates `softprops/action-gh-release` from 1 to 2 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@v1...v2) Updates `docker/login-action` from 2 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v2...v3) Updates `docker/setup-buildx-action` from 2 to 3 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v2...v3) Updates `docker/build-push-action` from 4 to 6 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v4...v6) Updates `github/super-linter` from 6 to 7 - [Release notes](https://github.com/github/super-linter/releases) - [Changelog](https://github.com/github/super-linter/blob/main/CHANGELOG.md) - [Commits](github/super-linter@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-merge - dependency-name: docker/metadata-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-merge - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-merge - dependency-name: softprops/action-gh-release dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-merge - dependency-name: docker/login-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-merge - dependency-name: docker/setup-buildx-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-merge - dependency-name: docker/build-push-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-merge - dependency-name: github/super-linter dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-merge ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent eb9fac5 commit 6efabc3

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333
image: ghcr.io/boschglobal/dse-gcc-builder:main
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v5
3737

3838
- name: Build package metadata
3939
id: package_meta
40-
uses: docker/metadata-action@v4
40+
uses: docker/metadata-action@v5
4141
with:
4242
images: dse/network
4343
tags: |
@@ -102,13 +102,13 @@ jobs:
102102
- windows-x86
103103
- windows-x64
104104
steps:
105-
- uses: actions/checkout@v3
105+
- uses: actions/checkout@v5
106106
with:
107107
ref: ${{ github.event.pull_request.head.sha }}
108108

109109
- name: Build package metadata
110110
id: package_meta
111-
uses: docker/metadata-action@v4
111+
uses: docker/metadata-action@v5
112112
with:
113113
images: dse/network
114114
tags: |
@@ -121,13 +121,13 @@ jobs:
121121
run: |
122122
echo "PACKAGE_VERSION=${{ fromJSON(steps.package_meta.outputs.json).labels['org.opencontainers.image.version'] }}" >> $GITHUB_ENV
123123
124-
- uses: actions/download-artifact@v3
124+
- uses: actions/download-artifact@v5
125125
with:
126126
name: ${{ env.package_name }}-${{ matrix.package_arch }}-package
127127
path: ${{ env.build_dir }}/_dist
128128

129129
- name: Publish
130-
uses: softprops/action-gh-release@v1
130+
uses: softprops/action-gh-release@v2
131131
if: startsWith(github.ref, 'refs/tags/')
132132
with:
133133
files: |
@@ -139,21 +139,21 @@ jobs:
139139
needs: [build]
140140
steps:
141141
- name: Checkout
142-
uses: actions/checkout@v3
142+
uses: actions/checkout@v5
143143

144144
- name: Log in to the Container registry
145-
uses: docker/login-action@v2
145+
uses: docker/login-action@v3
146146
with:
147147
registry: ${{ env.REGISTRY }}
148148
username: ${{ github.actor }}
149149
password: ${{ secrets.GITHUB_TOKEN }}
150150

151151
- name: Set up Docker Buildx
152-
uses: docker/setup-buildx-action@v2
152+
uses: docker/setup-buildx-action@v3
153153

154154
- name: Extract metadata (tags, labels) for Docker
155155
id: meta
156-
uses: docker/metadata-action@v4
156+
uses: docker/metadata-action@v5
157157
with:
158158
images: ${{ env.REGISTRY }}/${{ env.IMAGE_BASE_NAME }}-network
159159
tags: |
@@ -166,7 +166,7 @@ jobs:
166166
run: |
167167
echo "PACKAGE_VERSION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}" >> $GITHUB_ENV
168168
169-
- uses: actions/download-artifact@v3
169+
- uses: actions/download-artifact@v5
170170
with:
171171
name: ${{ env.package_name }}-linux-amd64-sandbox
172172
path: sandbox/${{ env.package_name }}-linux-amd64-sandbox
@@ -179,7 +179,7 @@ jobs:
179179
ls -R extra/tools/network/build/stage
180180
181181
- name: Build and push
182-
uses: docker/build-push-action@v4
182+
uses: docker/build-push-action@v6
183183
with:
184184
push: true
185185
context: extra/tools/network

.github/workflows/super-linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
name: Lint Code Base
1515
runs-on: [ubuntu-latest]
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
with:
1919
fetch-depth: 0
2020

2121
- name: Super-Linter
22-
uses: github/super-linter/slim@v6
22+
uses: github/super-linter/slim@v7
2323
env:
2424
VALIDATE_ALL_CODEBASE: true
2525
DEFAULT_BRANCH: main

0 commit comments

Comments
 (0)