Skip to content

Commit

Permalink
chore: 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 Sep 10, 2024
1 parent ad2288c commit bf8df8f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/get-github-ref-names.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
id: refs
- name: Calculate Cache-From
id: cache-from
uses: actions/github-script@v6.4.1
uses: actions/github-script@v7
with:
script: |
let cacheFrom = [
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/jira-release-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
steps:
- name: Fetch PRs with Jira References
id: fetchReleasedPRs
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const releaseBody = `${{ github.event.release.body }}`;
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
steps:
- name: Create Jira Version
id: createJiraVersion
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const versionTag = '${{ github.event.release.tag_name }}';
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
projectKey: ${{ inputs.projectKey }}

- name: Update Fix Version of Referenced Jira Issue
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const jiraIssueRef = '${{ steps.findJiraMarker.outputs.jiraIssueReference }}'
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
steps:
- name: Release Jira Version
id: createJiraVersion
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const releaseDate = new Date().toISOString().slice(0, 10); // YYYY-MM-DD
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-tf-plan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
filters: |
changed:
- added|modified: 'terraform/**'
- uses: actions/github-script@v6
- uses: actions/github-script@v7
id: changedDirs
with:
script: |
Expand Down

0 comments on commit bf8df8f

Please sign in to comment.