-
Notifications
You must be signed in to change notification settings - Fork 4
Update Github actions, Agents.md, tooling, dependencies #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
58b097c
e9a59be
927870d
a0b504a
9613c3f
4772183
5bd773f
527b4a0
c2460a7
e11f340
6990a44
1d172b7
741301b
313553a
0135b73
015dfae
dda25ea
96ec870
1b93938
ee755df
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| * @auth0/project-dx-sdks-engineer-codeowner | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -15,14 +15,14 @@ runs: | |||||
|
|
||||||
| steps: | ||||||
| - name: Set up Ruby | ||||||
| uses: ruby/setup-ruby@0481980f17b760ef6bca5e8c55809102a0af1e5a # pin@v1.263.0 | ||||||
| uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # pin@v1.268.0 | ||||||
| with: | ||||||
| ruby-version: ${{ inputs.ruby }} | ||||||
| bundler-cache: true | ||||||
| cache-version: 1 | ||||||
|
|
||||||
| - name: Setup Xcode | ||||||
| uses: mxcl/xcodebuild@e366f14791346edb74397fe9a762ccee86eddc06 # pin@v3.4.0 | ||||||
| uses: mxcl/xcodebuild@d3ee9b419c1be9a988086c58fe0988f32d99cfc5 # pin@v3.4.0 | ||||||
|
||||||
| uses: mxcl/xcodebuild@d3ee9b419c1be9a988086c58fe0988f32d99cfc5 # pin@v3.4.0 | |
| uses: mxcl/xcodebuild@d3ee9b419c1be9a988086c58fe0988f32d99cfc5 # pinned to d3ee9b419c1be9a988086c58fe0988f32d99cfc5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update the correct version number to 3.6.0
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -24,7 +24,7 @@ runs: | |||||
|
|
||||||
| - id: restore-spm-cache | ||||||
| name: Restore SPM cache | ||||||
| uses: actions/cache@v4 | ||||||
| uses: actions/cache@v5 | ||||||
| with: | ||||||
| path: ~/Library/Developer/Xcode/DerivedData/**/SourcePackages | ||||||
| key: spm-${{ inputs.platform }}-${{ hashFiles('*.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved') }}-${{ hashFiles('.xcode-version') }}-v1 | ||||||
|
|
@@ -36,7 +36,7 @@ runs: | |||||
|
|
||||||
| - id: restore-carthage-cache | ||||||
| name: Restore Carthage cache | ||||||
| uses: actions/cache@v4 | ||||||
| uses: actions/cache@v5 | ||||||
| with: | ||||||
| path: Carthage | ||||||
| key: carthage-${{ inputs.platform }}-${{ hashFiles('Cartfile.resolved') }}-${{ hashFiles('.xcode-version') }}-v1 | ||||||
|
|
@@ -47,7 +47,7 @@ runs: | |||||
| shell: bash | ||||||
|
|
||||||
| - name: Run tests | ||||||
| uses: mxcl/xcodebuild@e366f14791346edb74397fe9a762ccee86eddc06 # pin@v3.4.0 | ||||||
| uses: mxcl/xcodebuild@d3ee9b419c1be9a988086c58fe0988f32d99cfc5 # pin@v3.4.0 | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we have two separate hash for the same pinned version ? I think version might have changed
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. checked all the places. Hash for the pinned version 3.4.0 is same across d3ee9b419c1be9a988086c58fe0988f32d99cfc5 @pmathew92
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The hash is correct but the version you have tagged is wrong. The above hash is for version 3.6.0
|
||||||
| uses: mxcl/xcodebuild@d3ee9b419c1be9a988086c58fe0988f32d99cfc5 # pin@v3.4.0 | |
| uses: mxcl/xcodebuild@d3ee9b419c1be9a988086c58fe0988f32d99cfc5 # pinned to specific commit d3ee9b4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update the correct version number to 3.6.0
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| name: SCA | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: | ||
| - opened | ||
| - synchronize | ||
|
|
||
| jobs: | ||
| snyk-cli: | ||
| uses: auth0/devsecops-tooling/.github/workflows/sca-scan.yml@main | ||
| with: | ||
| additional-arguments: "--exclude=README.md" | ||
| secrets: inherit |
Uh oh!
There was an error while loading. Please reload this page.