diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index ed8521f23..5930f4419 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -18,7 +18,7 @@ jobs: name: Adding Issue Label runs-on: ubuntu-latest steps: - - uses: Renato66/auto-label@v2.3.0 + - uses: Renato66/auto-label@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} ignore-comments: true diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 5996483f2..46e6f848a 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -28,7 +28,7 @@ jobs: with: # ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: "zulu" # See 'Supported distributions' for available options java-version: "12.0" @@ -77,7 +77,7 @@ jobs: run: dart run custom_lint - name: Changed Files id: changed-files - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v45 - name: List all changed files run: | for file in ${{ steps.changed-files.outputs.all_changed_files }}; do @@ -114,7 +114,7 @@ jobs: needs: Flutter-Codebase-Check steps: - uses: actions/checkout@v4 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: "zulu" # See 'Supported distributions' for available options java-version: "12.0" @@ -127,14 +127,14 @@ jobs: - name: Codebase testing run: flutter test --coverage - name: Present and upload coverage to Codecov as ${{env.CODECOV_UNIQUE_NAME}} - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} verbose: true fail_ci_if_error: false name: "${{env.CODECOV_UNIQUE_NAME}}" - name: Test acceptable level of code coverage - uses: VeryGoodOpenSource/very_good_coverage@v2 + uses: VeryGoodOpenSource/very_good_coverage@v3 with: path: "./coverage/lcov.info" min_coverage: 92.0 @@ -145,7 +145,7 @@ jobs: needs: Flutter-Codebase-Check steps: - uses: actions/checkout@v4 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: "zulu" # See 'Supported distributions' for available options java-version: "12.0" @@ -193,7 +193,7 @@ jobs: - name: Get Changed Unauthorized files id: changed-unauth-files - uses: tj-actions/changed-files@v40 + uses: tj-actions/changed-files@v45 with: files: | .github/** @@ -241,7 +241,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v40 + uses: tj-actions/changed-files@v45 - name: Echo number of changed files env: diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index a48b221fa..a89bc3d93 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -37,7 +37,7 @@ jobs: # This could be important for our documentation generation process. # See: https://github.com/actions/checkout fetch-depth: 0 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: 'zulu' # See 'Supported distributions' for available options java-version: '12.0' @@ -82,7 +82,7 @@ jobs: # needs: Update-Documentation steps: - uses: actions/checkout@v4 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: 'zulu' # See 'Supported distributions' for available options java-version: '12.0' @@ -97,7 +97,7 @@ jobs: - name: Codebase testing run: flutter test --coverage - name: Present and upload coverage to Codecov as ${{env.CODECOV_UNIQUE_NAME}} - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} verbose: true @@ -114,7 +114,7 @@ jobs: needs: Flutter-Testing steps: - uses: actions/checkout@v4 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: 'zulu' # See 'Supported distributions' for available options java-version: '12.0' diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 24667f8e0..3430d52ec 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/stale@v8 + - uses: actions/stale@v9 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'This issue did not get any activity in the past 10 days and will be closed in 180 days if no update occurs. Please check if the develop branch has fixed it and report again or close the issue.' @@ -40,4 +40,4 @@ jobs: exempt-all-milestones: true exempt-pr-labels: 'wip' exempt-issue-labels: 'wip' - operations-per-run: 30 + operations-per-run: 50