Compare commits

..
Author SHA1 Message Date
dependabot[bot] 95bdd913ce build(deps): bump codecov/codecov-action from 7.0.0 to 7.1.0
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 7.0.0 to 7.1.0.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/fb8b3582c8e4def4969c97caa2f19720cb33a72f...0b35c9ecc4f0529d0eb674914510c22f85b196b4)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-09-16 04:44:56 +00:00
5 changed files with 8 additions and 27 deletions
+2 -19
View File
@@ -182,15 +182,6 @@ jobs:
endpoint: endpoint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
endpoint:
- mycontext
- tcp://127.0.0.1:2375
env:
# only the explicit endpoint should provide access to a daemon.
DOCKER_HOST: unix:///tmp/nonexistent-docker.sock
services: services:
dind: dind:
image: docker:29.3-dind@sha256:4d90f1f6c400315c2dba96d3ec93c01e64198395cbba04f79d12adce4f737029 image: docker:29.3-dind@sha256:4d90f1f6c400315c2dba96d3ec93c01e64198395cbba04f79d12adce4f737029
@@ -218,19 +209,11 @@ jobs:
docker --context mycontext info docker --context mycontext info
- -
name: Set up Docker Buildx name: Set up Docker Buildx
id: buildx
uses: ./ uses: ./
with: with:
endpoint: ${{ matrix.endpoint }} endpoint: mycontext
-
name: Build
env: env:
BUILDER: ${{ steps.buildx.outputs.name }} DOCKER_CONTEXT: mycontext
run: |
docker buildx build --builder "$BUILDER" - <<'EOF'
FROM scratch
LABEL test=endpoint
EOF
buildkitd-config: buildkitd-config:
runs-on: ubuntu-latest runs-on: ubuntu-latest
+1 -1
View File
@@ -32,7 +32,7 @@ jobs:
targets: test targets: test
- -
name: Upload coverage name: Upload coverage
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0 uses: codecov/codecov-action@0b35c9ecc4f0529d0eb674914510c22f85b196b4 # v7.1.0
with: with:
files: ./coverage/clover.xml files: ./coverage/clover.xml
token: ${{ secrets.CODECOV_TOKEN }} token: ${{ secrets.CODECOV_TOKEN }}
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long
Generated Vendored
+2 -2
View File
File diff suppressed because one or more lines are too long
+2 -4
View File
@@ -133,13 +133,11 @@ actionsToolkit.run(
if (!standalone && inputs.driver == 'docker-container') { if (!standalone && inputs.driver == 'docker-container') {
const buildkitImages = new Set<string>(); const buildkitImages = new Set<string>();
if (!builderExists && !inputs.endpoint) { if (!builderExists) {
buildkitImages.add(resolveBuildKitImage(inputs.driverOpts)); buildkitImages.add(resolveBuildKitImage(inputs.driverOpts));
} }
for (const node of appendNodes) { for (const node of appendNodes) {
if (!node.endpoint) { buildkitImages.add(resolveBuildKitImage(node['driver-opts']));
buildkitImages.add(resolveBuildKitImage(node['driver-opts']));
}
} }
if (buildkitImages.size > 0) { if (buildkitImages.size > 0) {
await core.group(`Pulling BuildKit image(s)`, async () => { await core.group(`Pulling BuildKit image(s)`, async () => {