diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1233b11..95af748 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -49,7 +49,7 @@ jobs: GH_TOKEN: ${{ secrets.RELEASE_TOKEN }} SKIP_PREFLIGHT_CHECK: true steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v5.0.0 with: ref: ${{ inputs.sha }} token: ${{ secrets.RELEASE_TOKEN }} @@ -90,7 +90,7 @@ jobs: git commit -n -m 'build(release): bundle distribution files' - name: Setup Node 24 for semantic-release - uses: actions/setup-node@v4 + uses: actions/setup-node@v6.0.0 with: node-version: '24.x' diff --git a/.github/workflows/github_actions_version_updater.yml b/.github/workflows/github_actions_version_updater.yml index b28bbf5..6d1bb82 100644 --- a/.github/workflows/github_actions_version_updater.yml +++ b/.github/workflows/github_actions_version_updater.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v5.0.0 with: # [Required] Access token with `workflow` scope. token: ${{ secrets.RELEASE_TOKEN }} diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 6ffd832..0185020 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -41,12 +41,12 @@ jobs: steps: - name: Checkout this action (PR code) - uses: actions/checkout@v4 + uses: actions/checkout@v5.0.0 with: path: action-under-test - name: Setup Node.js for building action - uses: actions/setup-node@v4 + uses: actions/setup-node@v6.0.0 with: node-version: '20.x' cache: 'npm' @@ -59,7 +59,7 @@ jobs: npm run build - name: Checkout target repository (${{ matrix.repo }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5.0.0 with: repository: ${{ matrix.repo }} path: test-repo @@ -171,7 +171,7 @@ jobs: - name: Upload generated README as artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5.0.0 with: name: readme-${{ matrix.artifact_name }}-${{ github.run_number }} path: test-repo/${{ matrix.readme_path }} diff --git a/.github/workflows/push_code_linting.yml b/.github/workflows/push_code_linting.yml index f45c792..bfa4867 100644 --- a/.github/workflows/push_code_linting.yml +++ b/.github/workflows/push_code_linting.yml @@ -32,7 +32,7 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v5.0.0 - name: Install compatible Nodejs version id: setup-node @@ -44,7 +44,7 @@ jobs: - run: npm run lint:markdown continue-on-error: true - name: eslint - uses: reviewdog/action-eslint@v1.33.2 + uses: reviewdog/action-eslint@v1.34.0 with: reporter: github-pr-review # Change reporter. eslint_flags: src/ diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 774a106..6a8b203 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,7 +12,7 @@ jobs: stale: runs-on: ubuntu-latest steps: - - uses: actions/stale@v9 + - uses: actions/stale@v10.1.0 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." diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 48a5f70..db98883 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,7 +35,7 @@ jobs: env: SKIP_PREFLIGHT_CHECK: true steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v5.0.0 with: ref: ${{ github.head_ref || github.ref }}