-
Notifications
You must be signed in to change notification settings - Fork 7
Draft: Test action updates #1211
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
base: main
Are you sure you want to change the base?
Changes from all commits
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 |
|---|---|---|
|
|
@@ -7,4 +7,4 @@ jobs: | |
| dependency-review: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: it-at-m/lhm_actions/action-templates/actions/action-dependency-review@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20 | ||
| - uses: it-at-m/lhm_actions/action-templates/actions/action-dependency-review@test-update | ||
|
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. Dependency review workflow security reduction. Even security-focused workflows like dependency review are affected by this change. 🤖 Prompt for AI Agents |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,7 @@ jobs: | |
| name: Run docker compose healthcheck | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: it-at-m/lhm_actions/action-templates/actions/action-dockercompose-healthcheck@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20 | ||
| - uses: it-at-m/lhm_actions/action-templates/actions/action-dockercompose-healthcheck@test-update | ||
|
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. 🧹 Nitpick Lower risk but still follows concerning pattern. While this workflow has lower impact (healthcheck only), it continues the pattern of reducing security guarantees. 🤖 Prompt for AI Agents |
||
| with: | ||
| skip-exited: true # required for keycloakmigration init container | ||
| compose-file-path: "./stack/" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,4 +10,4 @@ jobs: | |
| issues: write # permission to create labels if not exist | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: it-at-m/lhm_actions/action-templates/actions/action-pr-labeler@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20 | ||
| - uses: it-at-m/lhm_actions/action-templates/actions/action-pr-labeler@test-update | ||
|
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. Action pinning security concern applies here as well. Same security implications as noted in other workflows - moving from pinned commit SHA to |
||
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.
Consistent pattern: commit SHA to test-update tag migration.
This follows the same pattern across all workflows, reducing security posture by moving from immutable commit references to mutable tags.
🤖 Prompt for AI Agents