chore(deps): bump the actions group across 1 directory with 4 updates

Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact), [codecov/codecov-action](https://github.com/codecov/codecov-action) and [actions/add-to-project](https://github.com/actions/add-to-project).


Updates `actions/checkout` from 3 to 4
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

Updates `actions/download-artifact` from 4 to 5
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v4...v5)

Updates `codecov/codecov-action` from 4.3.0 to 5.4.3
- [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/v4.3.0...v5.4.3)

Updates `actions/add-to-project` from 1.0.1 to 1.0.2
- [Release notes](https://github.com/actions/add-to-project/releases)
- [Commits](https://github.com/actions/add-to-project/compare/v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '4'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/download-artifact
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: codecov/codecov-action
  dependency-version: 5.4.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/add-to-project
  dependency-version: 1.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2025-08-11 04:06:56 +00:00
committed by GitHub
parent 9ed0daaf8c
commit 35f1b70a6e
7 changed files with 10 additions and 10 deletions

View File

@@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [executable] needs: [executable]
steps: steps:
- uses: actions/download-artifact@v4 - uses: actions/download-artifact@v5
with: with:
path: executables path: executables
pattern: 'zitadel-*-*' pattern: 'zitadel-*-*'

View File

@@ -61,7 +61,7 @@ jobs:
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- -
uses: actions/download-artifact@v4 uses: actions/download-artifact@v5
with: with:
path: .artifacts path: .artifacts
name: zitadel-linux-${{ matrix.arch }} name: zitadel-linux-${{ matrix.arch }}
@@ -137,7 +137,7 @@ jobs:
steps: steps:
- -
name: Download digests name: Download digests
uses: actions/download-artifact@v4 uses: actions/download-artifact@v5
with: with:
pattern: digests-* pattern: digests-*
path: /tmp/digests path: /tmp/digests

View File

@@ -85,7 +85,7 @@ jobs:
tmp/race.log.* tmp/race.log.*
- -
name: publish coverage name: publish coverage
uses: codecov/codecov-action@v4.3.0 uses: codecov/codecov-action@v5.4.3
with: with:
file: profile.cov file: profile.cov
name: core-integration-tests-postgres name: core-integration-tests-postgres

View File

@@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- -
uses: actions/checkout@v3 uses: actions/checkout@v4
- -
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
@@ -56,7 +56,7 @@ jobs:
run: make core_unit_test run: make core_unit_test
- -
name: publish coverage name: publish coverage
uses: codecov/codecov-action@v4.3.0 uses: codecov/codecov-action@v5.4.3
with: with:
file: profile.cov file: profile.cov
name: core-unit-tests name: core-unit-tests

View File

@@ -14,7 +14,7 @@ jobs:
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- uses: actions/download-artifact@v4 - uses: actions/download-artifact@v5
with: with:
path: .artifacts path: .artifacts
name: zitadel-linux-amd64 name: zitadel-linux-amd64

View File

@@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: add issue - name: add issue
uses: actions/add-to-project@v1.0.1 uses: actions/add-to-project@v1.0.2
if: ${{ github.event_name == 'issues' }} if: ${{ github.event_name == 'issues' }}
with: with:
# You can target a repository in a different organization # You can target a repository in a different organization
@@ -28,7 +28,7 @@ jobs:
username: ${{ github.actor }} username: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }} GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }}
- name: add pr - name: add pr
uses: actions/add-to-project@v1.0.1 uses: actions/add-to-project@v1.0.2
if: ${{ github.event_name == 'pull_request_target' && github.actor != 'dependabot[bot]' && !contains(steps.checkUserMember.outputs.teams, 'engineers')}} if: ${{ github.event_name == 'pull_request_target' && github.actor != 'dependabot[bot]' && !contains(steps.checkUserMember.outputs.teams, 'engineers')}}
with: with:
# You can target a repository in a different organization # You can target a repository in a different organization

View File

@@ -28,7 +28,7 @@ jobs:
name: Source checkout name: Source checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- -
uses: actions/download-artifact@v4 uses: actions/download-artifact@v5
if: ${{ !inputs.dry_run }} if: ${{ !inputs.dry_run }}
with: with:
path: .artifacts path: .artifacts