Skip to content

Commit

Permalink
Merge branch 'master' into expose-kayenta-to-plugin-system
Browse files Browse the repository at this point in the history
  • Loading branch information
ovidiupopa07 authored Dec 6, 2023
2 parents cd7746c + 83722c6 commit 6201ec4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: 11
java-version: 17
distribution: 'zulu'
cache: 'gradle'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package-bump-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- name: Close package bump due to no changes
if: ${{ steps.lerna_bump.outputs.packageBumpCommitHash == '' && steps.createpullrequest.outputs.pull-request-number != '' }}
uses: actions/github-script@v6.4.1
uses: actions/github-script@v7.0.1
with:
github-token: '${{ secrets.SPINNAKERBOT_PERSONAL_ACCESS_TOKEN }}'
script: |
Expand All @@ -102,7 +102,7 @@ jobs:
- name: Approve package bump
if: ${{ steps.lerna_bump.outputs.packageBumpCommitHash != '' && steps.createpullrequest.outputs.pull-request-number != '' }}
uses: actions/github-script@v6.4.1
uses: actions/github-script@v7.0.1
with:
github-token: '${{ secrets.SPINNAKERBOT_TOKEN }}'
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: 11
java-version: 17
distribution: 'zulu'
cache: 'gradle'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: 11
java-version: 17
distribution: 'zulu'
cache: 'gradle'
- name: Assemble release info
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Login to Google Cloud
# Only run this on repositories in the 'spinnaker' org, not on forks.
if: startsWith(github.repository, 'spinnaker/')
uses: 'google-github-actions/auth@v1'
uses: 'google-github-actions/auth@v2'
# use service account flow defined at: https://github.com/google-github-actions/upload-cloud-storage#authenticating-via-service-account-key-json
with:
credentials_json: '${{ secrets.GAR_JSON_KEY }}'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
spinnakerGradleVersion=8.31.0
spinnakerGradleVersion=8.32.1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface ICloudFormationChangeSetInfoProps {
export const CloudFormationChangeSetInfo = (props: ICloudFormationChangeSetInfoProps) => {
const { stage, stageconfig } = props;
const [changeSetName, setChangeSetName] = useState(
(stage as any).changeSetName ? (stage as any).changeSetName : "ChangeSet-${ execution['id']}",
(stage as any).changeSetName ? (stage as any).changeSetName : "ChangeSet-${execution['id']}",
);
const [executeChangeSet, setExecuteChangeSet] = useState((stage as any).executeChangeSet);
const [actionOnReplacement, setActionOnReplacement] = useState((stage as any).actionOnReplacement);
Expand Down

0 comments on commit 6201ec4

Please sign in to comment.