diff --git a/.github/workflows/_auto-release.yml b/.github/workflows/_auto-release.yml index 19ffe9b..b4c8fac 100644 --- a/.github/workflows/_auto-release.yml +++ b/.github/workflows/_auto-release.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set Major Version to the current Release env: diff --git a/.github/workflows/_make-docs.yml b/.github/workflows/_make-docs.yml index 8d43214..a480709 100644 --- a/.github/workflows/_make-docs.yml +++ b/.github/workflows/_make-docs.yml @@ -18,7 +18,7 @@ jobs: contents: write runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6 @@ -29,7 +29,7 @@ jobs: working-directory: ./script/make-docs - name: Wait for Release job - uses: lewagon/wait-on-check-action@3603e826ee561ea102b58accb5ea55a1a7482343 # v1.4.1 + uses: lewagon/wait-on-check-action@74049309dfeff245fe8009a0137eacf28136cb3c # v1.5.0 with: ref: ${{ github.ref }} check-name: 'Release / Semantic Release' diff --git a/.github/workflows/_validate-workflows.yml b/.github/workflows/_validate-workflows.yml index 8bcde21..778cf7e 100644 --- a/.github/workflows/_validate-workflows.yml +++ b/.github/workflows/_validate-workflows.yml @@ -17,7 +17,7 @@ jobs: contents: read runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: diff --git a/.github/workflows/npm-pack.yml b/.github/workflows/npm-pack.yml index dea5612..235bf53 100644 --- a/.github/workflows/npm-pack.yml +++ b/.github/workflows/npm-pack.yml @@ -130,7 +130,7 @@ jobs: package-version: ${{ steps.version.outputs.package-version }} steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Node uses: actions/setup-node@v6 @@ -155,7 +155,7 @@ jobs: npm config set $URL/:_authToken ${{inputs.private-registry-token}} - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache-modules with: path: ${{ inputs.cache-modules-path }} @@ -206,7 +206,7 @@ jobs: - name: Upload Artifact if: ${{ inputs.upload-artifact && steps.pack.outputs.package-filename != '' }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: retention-days: ${{ inputs.artifact-retention-days }} path: ${{ inputs.working-directory }}/${{ steps.pack.outputs.package-filename }} diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 3d30ace..8bb6602 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -131,7 +131,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Node uses: actions/setup-node@v6 @@ -157,7 +157,7 @@ jobs: - name: Cache dependencies if: ${{ !inputs.download-artifact }} - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache-modules with: path: ${{ inputs.cache-modules-path }} @@ -214,7 +214,7 @@ jobs: echo "* Tag: @ $PACKAGE_TAG" >> $GITHUB_STEP_SUMMARY - name: Download Artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 if: ${{ inputs.download-artifact }} with: path: ${{ github.workspace }}/artifact-${{ github.sha }} diff --git a/.github/workflows/npm-run-script.yml b/.github/workflows/npm-run-script.yml index ab2a08d..5e2d082 100644 --- a/.github/workflows/npm-run-script.yml +++ b/.github/workflows/npm-run-script.yml @@ -152,17 +152,17 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Download Artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 if: ${{ inputs.download-artifact && !inputs.download-artifact-unzip }} with: path: ${{ inputs.download-artifact-path }} name: ${{ inputs.download-artifact-name }} - name: Download Artifact (zipped) - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 if: ${{ inputs.download-artifact && inputs.download-artifact-unzip }} with: path: '.' @@ -197,7 +197,7 @@ jobs: npm config set $URL/:_authToken ${{inputs.private-registry-token}} - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache-modules with: path: ${{ inputs.working-directory }}/node_modules @@ -227,7 +227,7 @@ jobs: - name: Upload Artifact if: ${{ inputs.upload-artifact && !inputs.upload-artifact-zipped }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: retention-days: ${{ inputs.artifact-retention-days }} path: ${{ inputs.upload-artifact-path }} @@ -235,7 +235,7 @@ jobs: - name: Upload Zipped Artifact if: ${{ inputs.upload-artifact && inputs.upload-artifact-zipped }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: retention-days: ${{ inputs.artifact-retention-days }} path: ${{ github.workspace }}/artifact-${{ github.sha }}.zip diff --git a/.github/workflows/semantic-release.yml b/.github/workflows/semantic-release.yml index deafcca..1f061eb 100644 --- a/.github/workflows/semantic-release.yml +++ b/.github/workflows/semantic-release.yml @@ -31,7 +31,7 @@ jobs: version: ${{ steps.semantic.outputs.new_release_version }} steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 persist-credentials: false @@ -40,7 +40,7 @@ jobs: run: echo "GITHUB_BRANCH=$(echo $GITHUB_REF | sed 's/refs\/heads\///g')" >> $GITHUB_ENV - name: Semantic Release - uses: cycjimmy/semantic-release-action@v5 + uses: cycjimmy/semantic-release-action@v6 id: semantic with: branches: ${{ env.GITHUB_BRANCH }}