diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 0c36624a46..3ac1d48d92 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -74,7 +74,7 @@ jobs: runs-on: ubuntu-latest needs: [executable] steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: path: executables pattern: 'zitadel-*-*' diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index f762124e00..9589fe4a0e 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -61,7 +61,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: path: .artifacts name: zitadel-linux-${{ matrix.arch }} @@ -137,7 +137,7 @@ jobs: steps: - name: Download digests - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: pattern: digests-* path: /tmp/digests diff --git a/.github/workflows/core-integration-test.yml b/.github/workflows/core-integration-test.yml index e33ffec3d5..50ce6582e7 100644 --- a/.github/workflows/core-integration-test.yml +++ b/.github/workflows/core-integration-test.yml @@ -85,7 +85,7 @@ jobs: tmp/race.log.* - name: publish coverage - uses: codecov/codecov-action@v4.3.0 + uses: codecov/codecov-action@v5.4.3 with: file: profile.cov name: core-integration-tests-postgres diff --git a/.github/workflows/core-unit-test.yml b/.github/workflows/core-unit-test.yml index 715a08eb19..ad5567e8db 100644 --- a/.github/workflows/core-unit-test.yml +++ b/.github/workflows/core-unit-test.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: @@ -56,7 +56,7 @@ jobs: run: make core_unit_test - name: publish coverage - uses: codecov/codecov-action@v4.3.0 + uses: codecov/codecov-action@v5.4.3 with: file: profile.cov name: core-unit-tests diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index b9c2159e1c..6fa106eba3 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v4 - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: path: .artifacts name: zitadel-linux-amd64 diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index 5b1febf989..480c3392bc 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: add issue - uses: actions/add-to-project@v1.0.1 + uses: actions/add-to-project@v1.0.2 if: ${{ github.event_name == 'issues' }} with: # You can target a repository in a different organization @@ -28,7 +28,7 @@ jobs: username: ${{ github.actor }} GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }} - 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')}} with: # You can target a repository in a different organization diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 063f6956a5..5c0f17508b 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -28,7 +28,7 @@ jobs: name: Source checkout uses: actions/checkout@v4 - - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 if: ${{ !inputs.dry_run }} with: path: .artifacts