Skip to content

Commit

Permalink
Bump the github group with 1 update
Browse files Browse the repository at this point in the history
Bumps the github group with 1 update: [actions/github-script](https://github.com/actions/github-script).

- [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
  dependency-group: github
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 22, 2023
1 parent c701728 commit 4d937eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: echo "IMAGE=${BASE_IMAGE}:${TAG}" >> $GITHUB_ENV

- name: Lukk gamle issues
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -87,7 +87,7 @@ jobs:
- name: Opprett deployment issue
id: createdeployissue
if: success()
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/promote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- name: Henter informasjon fra issuet
id: issue_comment
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
github.rest.issues.get( {
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Oppdater kommentar med deployment status ved feil
if: failure()
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const issue = { owner: context.issue.owner,
Expand All @@ -65,7 +65,7 @@ jobs:
- name: Oppdater kommentar med deployment status
if: success()
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const issue = { owner: context.issue.owner,
Expand All @@ -81,7 +81,7 @@ jobs:
echo "COMMIT_SHA=$(git rev-parse ${{ env.TAG }})" >> $GITHUB_ENV
- name: Tagg prodsatt commit
if: success() && env.CLUSTER == 'prod-fss'
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
Expand Down

0 comments on commit 4d937eb

Please sign in to comment.