lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build(deps): bump actions/github-script from 7.0.1 to 8.0.0 (#441182)

authored by philiptaron.tngl.sh and committed by

GitHub 5de4b0b4 de97151b

+13 -13
+1 -1
.github/workflows/backport.yml
··· 66 66 67 67 - name: "Add 'has: port to stable' label" 68 68 if: steps.backport.outputs.created_pull_numbers != '' 69 - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 69 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 70 70 with: 71 71 # Not using the app on purpose to avoid triggering another workflow run after adding this label. 72 72 script: |
+1 -1
.github/workflows/check.yml
··· 53 53 54 54 - name: Check commits 55 55 id: check 56 - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 56 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 57 57 env: 58 58 TARGETS_STABLE: ${{ fromJSON(inputs.baseBranch).stable && !contains(fromJSON(inputs.headBranch).type, 'development') }} 59 59 with:
+1 -1
.github/workflows/dismissed-review.yml
··· 27 27 runs-on: ubuntu-24.04-arm 28 28 timeout-minutes: 2 29 29 steps: 30 - - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 30 + - uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 31 31 with: 32 32 script: | 33 33 // PRs from forks don't have any PRs associated by default.
+1 -1
.github/workflows/edited.yml
··· 43 43 private-key: ${{ secrets.NIXPKGS_CI_APP_PRIVATE_KEY }} 44 44 permission-pull-requests: write 45 45 46 - - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 46 + - uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 47 47 with: 48 48 github-token: ${{ steps.app-token.outputs.token }} 49 49 script: |
+2 -2
.github/workflows/eval.yml
··· 222 222 223 223 - name: Add eval summary to commit statuses 224 224 if: ${{ github.event_name == 'pull_request_target' }} 225 - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 225 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 226 226 with: 227 227 script: | 228 228 const { readFile } = require('node:fs/promises') ··· 263 263 path: versions 264 264 265 265 - name: Add version comparison table to job summary 266 - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 266 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 267 267 env: 268 268 SYSTEMS: ${{ inputs.systems }} 269 269 VERSIONS: ${{ needs.versions.outputs.versions }}
+1 -1
.github/workflows/labels.yml
··· 64 64 run: gh api /rate_limit | jq 65 65 66 66 - name: Labels from API data and Eval results 67 - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 67 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 68 68 with: 69 69 github-token: ${{ steps.app-token.outputs.token || github.token }} 70 70 retries: 3
+1 -1
.github/workflows/merge-group.yml
··· 37 37 permissions: 38 38 statuses: write 39 39 steps: 40 - - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 40 + - uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 41 41 with: 42 42 script: | 43 43 const { serverUrl, repo, runId, payload } = context
+2 -2
.github/workflows/pr.yml
··· 40 40 sparse-checkout: | 41 41 ci/github-script 42 42 - id: prepare 43 - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 43 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 44 44 with: 45 45 script: | 46 46 require('./ci/github-script/prepare.js')({ ··· 138 138 permissions: 139 139 statuses: write 140 140 steps: 141 - - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 141 + - uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 142 142 with: 143 143 script: | 144 144 const { serverUrl, repo, runId, payload } = context
+1 -1
.github/workflows/reviewers.yml
··· 88 88 # In the regular case, this workflow is called via workflow_call from the eval workflow directly. 89 89 # In the more special case, when a PR is undrafted an eval run will have started already. 90 90 - name: Wait for comparison to be done 91 - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 91 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 92 92 id: eval 93 93 with: 94 94 script: |
+2 -2
.github/workflows/test.yml
··· 25 25 sparse-checkout: | 26 26 ci/github-script 27 27 - id: prepare 28 - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 28 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 29 29 with: 30 30 script: | 31 31 require('./ci/github-script/prepare.js')({ ··· 38 38 39 39 - name: Determine changed files 40 40 id: files 41 - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 41 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 42 42 with: 43 43 script: | 44 44 const files = (await github.paginate(github.rest.pulls.listFiles, {