]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
build(deps): bump actions/github-script from 6.4.0 to 6.4.1
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Mon, 1 May 2023 09:57:30 +0000 (09:57 +0000)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Thu, 11 May 2023 07:30:48 +0000 (09:30 +0200)
Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.0 to 6.4.1.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](https://github.com/actions/github-script/compare/98814c53be79b1d30f795b907e553d8679345975...d7906e4ad0b1822421a7e6a35d5ca353c962f410)

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

Signed-off-by: dependabot[bot] <support@github.com>
.github/workflows/development_freeze.yml
.github/workflows/labeler.yml

index 8e321a17d6339a737387ec6227b8ec3ec22c18b7..c4b48de31d2057b415a60874066453d812efc149 100644 (file)
@@ -28,7 +28,7 @@ jobs:
 
     steps:
       - name: Download Pull Request Metadata artifact
-        uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975
+        uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
         with:
           script: |
             const artifacts = await github.rest.actions.listWorkflowRunArtifacts({
@@ -54,7 +54,7 @@ jobs:
       - run: unzip ${{ env.PULL_REQUEST_METADATA_FILE }}.zip
 
       - name: 'Get Pull Request number'
-        uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975
+        uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
         with:
           github-token: ${{ secrets.GITHUB_TOKEN }}
           script: |
index 389f896f2383c3a2393e74f332eb8ab3e09a9407..98eee0243420b01b2f9132aa2401253124c31c59 100644 (file)
@@ -30,7 +30,7 @@ jobs:
         sync-labels: "" # This is a workaround for issue 18671
 
     - name: Set or remove labels based on systemd development workflow
-      uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975
+      uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
       if: github.event_name == 'pull_request_target' && github.event.action != 'closed' && !github.event.pull_request.draft
       with:
         script: |
@@ -75,7 +75,7 @@ jobs:
           }
 
     - name: Add please-review label on command in issue comment
-      uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975
+      uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
       if: github.event_name == 'issue_comment' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/please-review')
       with:
         script: |
@@ -87,7 +87,7 @@ jobs:
           })
 
     - name: Remove specific labels when PR is closed or merged
-      uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975
+      uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
       if: github.event_name == 'pull_request_target' && github.event.action == 'closed'
       with:
         script: |