Skip to content

Commit

Permalink
Bump the github group with 3 updates
Browse files Browse the repository at this point in the history
Bumps the github group with 3 updates: [actions/setup-java](https://github.com/actions/setup-java), [actions/github-script](https://github.com/actions/github-script) and [peter-evans/slash-command-dispatch](https://github.com/peter-evans/slash-command-dispatch).


Updates `actions/setup-java` from 3 to 4
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](actions/setup-java@v3...v4)

Updates `actions/github-script` from 6 to 7
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v6...v7)

Updates `peter-evans/slash-command-dispatch` from 3.0.1 to 3.0.2
- [Release notes](https://github.com/peter-evans/slash-command-dispatch/releases)
- [Commits](peter-evans/slash-command-dispatch@v3.0.1...v3.0.2)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github
- dependency-name: actions/github-script
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github
- dependency-name: peter-evans/slash-command-dispatch
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 12, 2023
1 parent 1061e91 commit ea4191d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
issues: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
Expand Down 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
2 changes: 1 addition & 1 deletion .github/workflows/build-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-preprod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Slash command dispatch
uses: peter-evans/[email protected].1
uses: peter-evans/[email protected].2
with:
token: ${{ secrets.LOS_TOKEN }}
commands: promote
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 ea4191d

Please sign in to comment.