**Describe the bug** Attempting to access GITHUB_RUN_ATTEMPT using context.runAttempt gives back undefined **To Reproduce** Steps to reproduce the behavior: Create following test workflow and run it ``` on: workflow_dispatch: jobs: deploy: runs-on: ubuntu-latest timeout-minutes: 30 steps: - uses: actions/github-script@v7 with: script: | const runAttempt = parseInt(process.env.GITHUB_RUN_ATTEMPT, 10); core.warning(`context.runAttempt content: ${context.runAttempt} - ${runAttempt}`); ``` Result in: Warning: context.runAttempt content: undefined - 1 **Expected behavior** context.runAttempt should hold the correct value according to the link https://github.com/actions/toolkit/blob/main/packages/github/src/context.ts used in README.md After looking at the actions/toolkit repository i wonder if the version linked was actually released at all, the actions/toolkit repo don't have any tags for `@actions/github-6.0.0` and the release in [npmjs](https://www.npmjs.com/package/@actions/github/v/6.0.0?activeTab=versions) date back to 10/10/2023 while the commit adding runAttempt date 28/10/2023 ..