-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump iamlive to v1.1.6 as default version
- Loading branch information
1 parent
82a5dfd
commit 7e6f800
Showing
2 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ jobs: | |
strategy: | ||
fail-fast: true | ||
matrix: | ||
iamliveVersion: [v0.48.0, v0.49.0, v0.53.0] | ||
iamliveVersion: [v0.49.0, v0.53.0, v1.1.6] | ||
|
||
steps: | ||
- name: Check out code | ||
|
@@ -72,7 +72,7 @@ jobs: | |
with: | ||
iamlive-version: ${{ matrix.iamliveVersion }} | ||
auto-capture: true | ||
output-file: ./test-policy.json | ||
output-file: ./test-policy-${{ matrix.iamliveVersion }}.json | ||
|
||
- name: Check output and installPath | ||
run: | | ||
|
@@ -106,15 +106,20 @@ jobs: | |
|
||
needs: [utilize] | ||
|
||
strategy: | ||
fail-fast: true | ||
matrix: | ||
iamliveVersion: [v0.49.0, v0.53.0, v1.1.6] | ||
|
||
steps: | ||
- name: download-policy | ||
uses: actions/[email protected] | ||
with: | ||
name: test-policy.json | ||
name: test-policy-${{ matrix.iamliveVersion }}.json | ||
|
||
- name: check-policy | ||
run: | | ||
echo "assert policy has file" | ||
cat ./test-policy.json | ||
cat test-policy.json | grep 's3:CreateBucket' | ||
cat test-policy.json | grep 's3:ListAllMyBuckets' | ||
cat ./test-policy-${{ matrix.iamliveVersion }}.json | ||
cat test-policy-${{ matrix.iamliveVersion }}.json | grep 's3:CreateBucket' | ||
cat test-policy-${{ matrix.iamliveVersion }}.json | grep 's3:ListAllMyBuckets' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters