Skip to content

Commit

Permalink
build(deps): bump actions/github-script from 6 to 7
Browse files Browse the repository at this point in the history
Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v6...v7)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 20, 2023
1 parent 41471f0 commit 7a30687
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
id: check
if: github.event_name == 'push'
continue-on-error: true
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
try {
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
BUMP: ${{ inputs.nixpkgs-bump }}
- name: Comment on commit
if: (success() && steps.check.outputs.cached != 'true')
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
if (process.env.FAILED_BUILDS_COUNT > 0) {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/needs-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
steps:
- name: Set labels
continue-on-error: true
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
FAILED_BUILDS_COUNT: ${{ needs.build.outputs.FAILED_BUILDS_COUNT }}
FAILED_BUILDS: ${{ needs.build.outputs.FAILED_BUILDS }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nixpkgs-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
# Trigger build.yml and make sure no new commits were pushed in the meantime
- name: Trigger build.yml workflow
if: (success() && steps.bump.outcome == 'success')
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
try {
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
steps:
- name: Add comment
if: needs.lint.outputs.fmt == 'failure' && github.event.action == 'opened'
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
Expand All @@ -48,7 +48,7 @@ jobs:
})
- name: Remove cached label
if: contains(github.event.pull_request.labels.*.name, 'cached')
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
github.rest.issues.removeLabel({
Expand Down

0 comments on commit 7a30687

Please sign in to comment.