From 9c8fc250a20db3ea475b214e643fae8a212f9fb1 Mon Sep 17 00:00:00 2001 From: fabasoad Date: Wed, 4 Mar 2026 18:24:15 +0900 Subject: [PATCH 1/3] ci(deps): bump GitHub Actions to the latest version --- .github/workflows/build.yml | 36 ++++++++++----------- .github/workflows/checks.yml | 16 ++++----- .github/workflows/codeql.yml | 4 +-- .github/workflows/deployment.yml | 6 ++-- .github/workflows/on-pr.yaml | 18 +++++------ .github/workflows/trivy.yaml | 10 +++--- .github/workflows/update-gradle-wrapper.yml | 2 +- CHANGELOG.md | 2 +- 8 files changed, 47 insertions(+), 47 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0685063e..d4ea832d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ env: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout local repository uses: actions/checkout@v6 @@ -22,7 +22,7 @@ jobs: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }} - name: Install nvm at specific version run: | - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash - name: Install prettier using npm run: sudo npm install --global prettier - name: Install jenv @@ -44,7 +44,7 @@ jobs: echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT shell: bash - name: Cache gradle wrapper and jars - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches @@ -54,7 +54,7 @@ jobs: ${{ runner.os }}-gradle-${{ steps.get-date.outputs.date }}- ${{ runner.os }}-gradle- - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/package-lock.json') }} @@ -64,7 +64,7 @@ jobs: ${{ runner.os }}- - name: Restore pitest history from cache id: cache-pitest-history-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/backend/pitestHistory/pitestHistory key: pitestHistory-${{ hashFiles('**/*.gradle*', '**/*.java*') }} @@ -76,20 +76,20 @@ jobs: run: ./run.sh pitest working-directory: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/ - name: Upload build report to artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: always() with: name: ${{ env.SERVICE_NAME }}-build-reports path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/backend/build/reports/ - name: Save pitest history if: always() && steps.cache-pitest-history-restore.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/backend/pitestHistory/pitestHistory key: ${{ steps.cache-pitest-history-restore.outputs.cache-primary-key }} determaine_should_publish_new_version: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 outputs: PUBLISH_NEW_VERSION: ${{ steps.determaine_should_publish_new_version.outputs.PUBLISH_NEW_VERSION }} steps: @@ -105,7 +105,7 @@ jobs: echo "PUBLISH_NEW_VERSION=${PUBLISH_NEW_VERSION}" >> $GITHUB_OUTPUT determaine_current_tag_name: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: [ build, determaine_should_publish_new_version ] if: ${{ needs.determaine_should_publish_new_version.outputs.PUBLISH_NEW_VERSION == 'true' }} outputs: @@ -120,7 +120,7 @@ jobs: echo "CURRENT_TAG=${CURRENT_TAG}" >> $GITHUB_OUTPUT update_changelog: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: [ build, determaine_should_publish_new_version, determaine_current_tag_name ] if: ${{ needs.determaine_should_publish_new_version.outputs.PUBLISH_NEW_VERSION == 'true' }} outputs: @@ -136,7 +136,7 @@ jobs: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }} - name: Install nvm at specific version run: | - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash - name: Install git-cliff and prettier using npm run: sudo npm install --global git-cliff prettier - name: Generate changelog @@ -158,7 +158,7 @@ jobs: working-directory: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/ docker: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: [ build, determaine_current_tag_name, update_changelog ] steps: - name: Checkout local repository @@ -175,14 +175,14 @@ jobs: jenv add ${JAVA_HOME_21_X64} - name: Install nvm at specific version run: | - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash - name: Get Date id: get-date run: | echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT shell: bash - name: Cache gradle wrapper and jars - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches @@ -208,7 +208,7 @@ jobs: with: platforms: linux/amd64,linux/arm64 - name: Login to DockerHub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_PASSWORD }} @@ -237,7 +237,7 @@ jobs: readme-filepath: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/README.md deploy_to_github_pages: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: [ docker ] permissions: contents: read @@ -262,9 +262,9 @@ jobs: shell: bash - name: Install nvm at specific version run: | - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 3c30452d..86ea0016 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -14,7 +14,7 @@ env: jobs: determine-changes: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 outputs: HAS_BACKEND_CHANGES: ${{ steps.changes.outputs.backend }} HAS_FRONTEND_CHANGES: ${{ steps.changes.outputs.frontend }} @@ -36,7 +36,7 @@ jobs: working-directory: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/ talisman-checks: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: ${{ github.actor != 'dependabot[bot]' && github.event_name != 'schedule' }} steps: - name: Checkout local repository @@ -55,7 +55,7 @@ jobs: backend-dependency-checks: if: ${{ github.event_name == 'schedule' || needs.determine-changes.outputs.HAS_BACKEND_CHANGES == 'true' }} - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: [ determine-changes ] steps: - name: Checkout local repository @@ -77,7 +77,7 @@ jobs: echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT shell: bash - name: Cache nvd nist data - uses: actions/cache@v4 + uses: actions/cache@v5 id: nvd-nist-cache with: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/backend/.nvd-nist-cache @@ -86,7 +86,7 @@ jobs: ${{ runner.os }}-nvd-nist-cache-${{ steps.get-date.outputs.date }} ${{ runner.os }}-nvd-nist-cache - name: Cache gradle wrapper and jars - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches @@ -100,14 +100,14 @@ jobs: working-directory: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/ - name: Upload dependency check report to artifacts if: ${{ failure() }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: dependency-check-report.html path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/backend/build/reports/dependency-check-report.html frontend-dependency-checks: if: ${{ github.event_name == 'schedule' || needs.determine-changes.outputs.HAS_FRONTEND_CHANGES == 'true' }} - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: [ determine-changes ] steps: - name: Checkout local repository @@ -116,7 +116,7 @@ jobs: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }} - name: Install nvm at specific version run: | - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash - name: Dependency Check run: ./run.sh check-frontend working-directory: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/ diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 0f207b70..ac6ab908 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -16,7 +16,7 @@ on: jobs: determine-changes: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 outputs: LANGUAGES: ${{ steps.changes.outputs.changes }} steps: @@ -38,7 +38,7 @@ jobs: analyze: name: Analyze - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: determine-changes permissions: actions: read diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 3546367d..c50dc415 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -12,7 +12,7 @@ env: jobs: deploy_to_github_pages: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 permissions: contents: read pages: write @@ -37,9 +37,9 @@ jobs: shell: bash - name: Install nvm at specific version run: | - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/on-pr.yaml b/.github/workflows/on-pr.yaml index 919cbef8..aa66dd6c 100644 --- a/.github/workflows/on-pr.yaml +++ b/.github/workflows/on-pr.yaml @@ -12,7 +12,7 @@ env: jobs: determine-changes: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 outputs: HAS_BACKEND_CHANGES: ${{ steps.changes.outputs.backend }} HAS_FRONTEND_CHANGES: ${{ steps.changes.outputs.frontend }} @@ -36,7 +36,7 @@ jobs: backend-verification: needs: [ determine-changes ] if: ${{ needs.determine-changes.outputs.HAS_BACKEND_CHANGES == 'true' }} - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout local repository uses: actions/checkout@v6 @@ -63,7 +63,7 @@ jobs: echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT shell: bash - name: Cache gradle wrapper and jars - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches @@ -76,7 +76,7 @@ jobs: run: ./run.sh backend-test working-directory: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/ - name: Upload build report to artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: always() with: name: ${{ env.SERVICE_NAME }}-build-reports @@ -85,7 +85,7 @@ jobs: frontend-verification: needs: [ determine-changes ] if: ${{ needs.determine-changes.outputs.HAS_FRONTEND_CHANGES == 'true' }} - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout local repository uses: actions/checkout@v6 @@ -93,7 +93,7 @@ jobs: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }} - name: Install nvm at specific version run: | - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash - name: Install prettier using npm run: sudo npm install --global prettier - name: Install Hadolint and add to PATH @@ -107,7 +107,7 @@ jobs: echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT shell: bash - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/package-lock.json') }} @@ -120,7 +120,7 @@ jobs: working-directory: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/ dependabot: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: [ backend-verification, frontend-verification ] if: ${{ always() && github.actor == 'dependabot[bot]' && contains(needs.*.result, 'success') && !(contains(needs.*.result, 'failure')) }} permissions: @@ -129,7 +129,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v2.4.0 + uses: dependabot/fetch-metadata@v2.5.0 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Enable auto-merge for Dependabot PRs diff --git a/.github/workflows/trivy.yaml b/.github/workflows/trivy.yaml index 67a927a3..0dbace21 100644 --- a/.github/workflows/trivy.yaml +++ b/.github/workflows/trivy.yaml @@ -19,7 +19,7 @@ env: jobs: trivy-checks: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout local repository uses: actions/checkout@v6 @@ -27,7 +27,7 @@ jobs: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }} - name: Cache boot jar id: boot-jar - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/backend/build/libs/gitactionboard.jar key: ${{ runner.os }}-bootjar-${{ hashFiles('**/*.gradle*') }} @@ -43,7 +43,7 @@ jobs: jenv add ${JAVA_HOME_21_X64} - name: Install nvm at specific version run: | - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash - name: Get Date id: get-date run: | @@ -51,7 +51,7 @@ jobs: shell: bash - name: Cache gradle wrapper and jars if: steps.boot-jar.outputs.cache-hit != 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches @@ -62,7 +62,7 @@ jobs: ${{ runner.os }}-gradle- - name: Cache node modules if: steps.boot-jar.outputs.cache-hit != 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: ${{ runner.os }}-node-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/update-gradle-wrapper.yml b/.github/workflows/update-gradle-wrapper.yml index bd75a0d2..9e8c2b1a 100644 --- a/.github/workflows/update-gradle-wrapper.yml +++ b/.github/workflows/update-gradle-wrapper.yml @@ -7,7 +7,7 @@ on: jobs: update-gradle-wrapper: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 permissions: pull-requests: write contents: write diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c5b2620..a659baa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -826,7 +826,7 @@ All notable changes to this project will be documented in this file. - Run checks for PR review_requested, edited and ready_for_review type ([f15e89d](https://github.com/otto-de/gitactionboard/commit/f15e89d0b292fe4d61232b4dcd034771c38b72d2)) -- Update GitHub runner to use ubuntu-22.04 ([5c93889](https://github.com/otto-de/gitactionboard/commit/5c938892ea85dbbbf4c83d48917e474d311173e7)) +- Update GitHub runner to use ubuntu-24.04 ([5c93889](https://github.com/otto-de/gitactionboard/commit/5c938892ea85dbbbf4c83d48917e474d311173e7)) - Remove uses of deprecated properties ([5cd4dfc](https://github.com/otto-de/gitactionboard/commit/5cd4dfc994d99a32bd97222f17c2c53d274ef28f)) From fe95234f167f7bd4d67e5511f14fd4f9d7019344 Mon Sep 17 00:00:00 2001 From: fabasoad Date: Tue, 26 May 2026 21:46:47 +0900 Subject: [PATCH 2/3] revert: CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a659baa1..5c5b2620 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -826,7 +826,7 @@ All notable changes to this project will be documented in this file. - Run checks for PR review_requested, edited and ready_for_review type ([f15e89d](https://github.com/otto-de/gitactionboard/commit/f15e89d0b292fe4d61232b4dcd034771c38b72d2)) -- Update GitHub runner to use ubuntu-24.04 ([5c93889](https://github.com/otto-de/gitactionboard/commit/5c938892ea85dbbbf4c83d48917e474d311173e7)) +- Update GitHub runner to use ubuntu-22.04 ([5c93889](https://github.com/otto-de/gitactionboard/commit/5c938892ea85dbbbf4c83d48917e474d311173e7)) - Remove uses of deprecated properties ([5cd4dfc](https://github.com/otto-de/gitactionboard/commit/5cd4dfc994d99a32bd97222f17c2c53d274ef28f)) From fe25b4c08aca00f983e5bc78421d69c9e7eb2d81 Mon Sep 17 00:00:00 2001 From: fabasoad Date: Tue, 26 May 2026 21:53:39 +0900 Subject: [PATCH 3/3] ci(deps): bump actions/configure-pages from v5 to v6 --- .github/workflows/build.yml | 12 ++++++------ .github/workflows/checks.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/deployment.yml | 6 +++--- .github/workflows/on-pr.yaml | 4 ++-- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d4ea832d..cd827728 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -197,14 +197,14 @@ jobs: working-directory: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/ - name: Docker meta id: docker_meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: ${{ secrets.DOCKER_HUB_USERNAME }}/${{ env.SERVICE_NAME }} tags: | type=semver,pattern={{major}}.{{minor}}.{{patch}} type=semver,pattern={{major}}.{{minor}} - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 with: platforms: linux/amd64,linux/arm64 - name: Login to DockerHub @@ -221,7 +221,7 @@ jobs: body: "Changelog can be found [here](${{ needs.update_changelog.outputs.CHANGE_LOG_URL }})." - name: Build and push id: docker_build - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: ${{ github.workspace }}/${{ env.SERVICE_NAME }} tags: ${{ steps.docker_meta.outputs.tags }} @@ -252,7 +252,7 @@ jobs: with: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }} - name: Setup Pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 with: enablement: true - name: Get Date @@ -276,9 +276,9 @@ jobs: run: ./run.sh frontend-build-for-github-pages working-directory: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/ - name: Upload site artifact - uses: actions/upload-pages-artifact@v4 + uses: actions/upload-pages-artifact@v5 with: path: "${{ github.workspace }}/${{ env.SERVICE_NAME }}/frontend/dist" - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 86ea0016..74e34dd2 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -25,7 +25,7 @@ jobs: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }} fetch-depth: 5 - name: Determine new changes - uses: dorny/paths-filter@v3 + uses: dorny/paths-filter@v4 id: changes with: filters: | diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ac6ab908..2fbe036e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -25,7 +25,7 @@ jobs: with: fetch-depth: 5 - name: Determine new changes - uses: dorny/paths-filter@v3 + uses: dorny/paths-filter@v4 id: changes with: filters: | diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index c50dc415..f5c96bd5 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -27,7 +27,7 @@ jobs: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }} ref: ${{ inputs.git_ref }} - name: Setup Pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 with: enablement: true - name: Get Date @@ -51,9 +51,9 @@ jobs: run: ./run.sh frontend-build-for-github-pages working-directory: ${{ github.workspace }}/${{ env.SERVICE_NAME }}/ - name: Upload site artifact - uses: actions/upload-pages-artifact@v4 + uses: actions/upload-pages-artifact@v5 with: path: "${{ github.workspace }}/${{ env.SERVICE_NAME }}/frontend/dist" - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/on-pr.yaml b/.github/workflows/on-pr.yaml index aa66dd6c..c99a5eec 100644 --- a/.github/workflows/on-pr.yaml +++ b/.github/workflows/on-pr.yaml @@ -23,7 +23,7 @@ jobs: path: ${{ github.workspace }}/${{ env.SERVICE_NAME }} fetch-depth: 5 - name: Determine new changes - uses: dorny/paths-filter@v3 + uses: dorny/paths-filter@v4 id: changes with: filters: | @@ -129,7 +129,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v2.5.0 + uses: dependabot/fetch-metadata@v3 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Enable auto-merge for Dependabot PRs