diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3171afaf2b..22e73f5bce 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,11 +6,11 @@ jobs: name: SonarCloud runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: SonarCloud Scan uses: SonarSource/sonarcloud-github-action@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} \ No newline at end of file + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/.github/workflows/closed-issues.yml b/.github/workflows/closed-issues.yml index 0a50158079..56de291986 100644 --- a/.github/workflows/closed-issues.yml +++ b/.github/workflows/closed-issues.yml @@ -1,21 +1,21 @@ name: "Reply to closed issue" -on: - issues: - types: +on: + issues: + types: - closed -jobs: - auto_comment: +jobs: + auto_comment: runs-on: ubuntu-latest - steps: - - + steps: + - uses: aws-actions/closed-issue-message@v1 - with: + with: message: | Hi there! This is an automatic reply. `Share and enjoy` This issue is now closed. Please be aware that closed issues are not actively monitored. If you reply, you may get no response. - - If the original bug is not actually fixed, please feel free to open a new ticket. Please refer to this issue for clarity. + - If the original bug is not actually fixed, please feel free to open a new issue. Please refer to this issue for clarity. - Follow-up questions can also be posted in a new [discussion](https://github.com/firefly-iii/firefly-iii/discussions/) Thank you for your consideration. diff --git a/.github/workflows/depsreview.yaml b/.github/workflows/depsreview.yaml index f2605b7a7e..da99d0c548 100644 --- a/.github/workflows/depsreview.yaml +++ b/.github/workflows/depsreview.yaml @@ -11,4 +11,4 @@ jobs: - name: 'Checkout Repository' uses: actions/checkout@v3 - name: 'Dependency Review' - uses: actions/dependency-review-action@v1 + uses: actions/dependency-review-action@v3 diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 4d07ea000f..75babbfe2d 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Copy .env run: test -f .env || cp .ci/.env.ci .env - name: Prepare dependencies @@ -51,7 +51,7 @@ jobs: - prepare steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Copy .env run: test -f .env || cp .ci/.env.ci .env - name: Download database @@ -86,7 +86,7 @@ jobs: - prepare steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Copy .env run: test -f .env || cp .ci/.env.ci .env - name: Download database @@ -120,7 +120,7 @@ jobs: - prepare steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Copy .env run: test -f .env || cp .ci/.env.ci .env - name: Download database diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 48367b8949..94c2c5cd11 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -15,7 +15,16 @@ jobs: pull-requests: write # for dessant/lock-threads to lock PRs runs-on: ubuntu-latest steps: - - uses: dessant/lock-threads@v2 + - uses: dessant/lock-threads@v4 with: github-token: ${{ github.token }} issue-lock-inactive-days: '90' + issue-comment: > + Hi there! This is an automatic reply. `Share and enjoy` + + This issue is now `locked` :lock:. + + - If you feel there is more to be said about this specific issue, please feel free to open a new issue. Please refer to this issue for clarity. + - Follow-up questions and comments can also be posted in a new [discussion](https://github.com/firefly-iii/firefly-iii/discussions/) + + Thank you for your consideration. diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 142b371703..d3a264a71f 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -18,13 +18,17 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: > - This issue has been automatically marked as stale because it has not had - recent activity. It will be closed if no further activity occurs. Thank you - for your contributions. + Hi there! This is an automatic reply. `Share and enjoy` + + This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. + + Thank you for your contributions. stale-pr-message: > - This issue has been automatically marked as stale because it has not had - recent activity. It will be closed if no further activity occurs. Thank you - for your contributions. + Hi there! This is an automatic reply. `Share and enjoy` + + This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. + + Thank you for your contributions. days-before-stale: 14 days-before-close: 7 exempt-issue-labels: 'enhancement,feature,bug,announcement,layout-v3'