Skip to content

Commit

Permalink
[skip ci] update actions/github-script workflow version
Browse files Browse the repository at this point in the history
  • Loading branch information
tom2drum committed Feb 5, 2024
1 parent 2086378 commit fe81cfe
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/label-issues-in-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
steps:
- name: Getting tags of the two latestest releases
id: tags
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
TAG: ${{ inputs.tag }}
with:
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
- name: Looking for commits between two releases
id: commits
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
PREVIOUS_TAG: ${{ steps.tags.outputs.previous }}
LATEST_TAG: ${{ steps.tags.outputs.latest }}
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
- name: Looking for issues linked to commits
id: linked_issues
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
COMMITS: ${{ steps.commits.outputs.result }}
with:
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
- name: Creating label
id: label_creating
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
LABEL_NAME: ${{ inputs.label_name }}
LABEL_COLOR: ${{ inputs.label_color }}
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
- name: Adding label to issues
id: labeling_issues
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
LABEL_NAME: ${{ inputs.label_name }}
ISSUES: ${{ steps.linked_issues.outputs.result }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
steps:
- name: Determine if it is the initial version of the pre-release
id: is_initial
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
TAG: ${{ github.ref_name }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/project-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
steps:
- name: Fetching issues linked to pull request
id: linked_issues
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- name: Remove label
id: tags
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
LABEL_NAME: pre-release
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-project-cards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
steps:
- name: Getting project info
id: project_info
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
PROJECT_NAME: ${{ inputs.project_name }}
FIELD_NAME: ${{ inputs.field_name }}
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:

- name: Getting project items that linked to the issues
id: items
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
ISSUES: ${{ inputs.issues }}
with:
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
- name: Updating field value of the project items
id: updating_items
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
ITEMS: ${{ steps.items.outputs.result }}
PROJECT_ID: ${{ steps.project_info.outputs.id }}
Expand Down

0 comments on commit fe81cfe

Please sign in to comment.