Skip to content

Commit c8c3b4a

Browse files
chore(deps): update github actions
1 parent 23a0ccd commit c8c3b4a

7 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2828

2929
- name: Set up JDK for running Gradle
30-
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0
30+
uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0
3131
with:
3232
distribution: temurin
3333
java-version: 17
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
5151

5252
- name: Set up JDK for running Gradle
53-
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0
53+
uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0
5454
with:
5555
distribution: temurin
5656
java-version: 17

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Set up Java 17
3434
if: matrix.language == 'java'
35-
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0
35+
uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0
3636
with:
3737
distribution: temurin
3838
java-version: 17
@@ -42,7 +42,7 @@ jobs:
4242
uses: gradle/actions/setup-gradle@3f131e8634966bd73d06cc69884922b02e6faf92 # v6.2.0
4343

4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
45+
uses: github/codeql-action/init@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0
4646
with:
4747
languages: ${{ matrix.language }}
4848
# using "linked" helps to keep up with the latest Kotlin support
@@ -59,7 +59,7 @@ jobs:
5959
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
6060

6161
- name: Perform CodeQL analysis
62-
uses: github/codeql-action/analyze@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
62+
uses: github/codeql-action/analyze@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0
6363
with:
6464
category: "/language:${{matrix.language}}"
6565

@@ -69,6 +69,6 @@ jobs:
6969
needs:
7070
- analyze
7171
if: always() && github.event_name == 'schedule'
72-
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
72+
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@62d5939b47144252763c5ff9fffe8c20d76cd806 # v0.4.0
7373
with:
7474
success: ${{ needs.analyze.result == 'success' }}

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
needs:
2626
- fossa
2727
if: always()
28-
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
28+
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@62d5939b47144252763c5ff9fffe8c20d76cd806 # v0.4.0
2929
with:
3030
success: ${{ needs.fossa.result == 'success' }}

.github/workflows/issue-management-stale-action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# Action #1: Handle issues/PRs awaiting author feedback
2121
# - After 7 days inactive: Adds "stale" label + warning comment
2222
# - After 7 more days inactive: Closes
23-
- uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0
23+
- uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 # v10.4.0
2424
with:
2525
only-labels: "needs author feedback"
2626
days-before-stale: 7
@@ -38,7 +38,7 @@ jobs:
3838
# - Targets: Issues with "enhancement" label (but NOT "needs author feedback")
3939
# - After 365 days inactive: Adds "stale" label + closes immediately (no warning period)
4040
# - Skips: Issues with "needs author feedback" to avoid conflicts with Action #1
41-
- uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0
41+
- uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 # v10.4.0
4242
with:
4343
only-labels: "enhancement"
4444
# Skip issues that need author feedback (handled by the first action with 7+7 day policy)
@@ -55,7 +55,7 @@ jobs:
5555
# Action #3: Handle stale PRs
5656
# - After 180 days inactive: Adds "stale" label + warning comment
5757
# - After 14 more days inactive: Closes
58-
- uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0
58+
- uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 # v10.4.0
5959
with:
6060
days-before-issue-stale: -1
6161
days-before-issue-close: -1
@@ -72,6 +72,6 @@ jobs:
7272
needs:
7373
- stale
7474
if: always()
75-
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
75+
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@62d5939b47144252763c5ff9fffe8c20d76cd806 # v0.4.0
7676
with:
7777
success: ${{ needs.stale.result == 'success' }}

.github/workflows/oats-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2626

2727
- name: Set up JDK for running Gradle
28-
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0
28+
uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0
2929
with:
3030
distribution: temurin
3131
java-version: 17

.github/workflows/ossf-scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
# Upload the results to GitHub's code scanning dashboard (optional).
4545
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
4646
- name: "Upload to code-scanning"
47-
uses: github/codeql-action/upload-sarif@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
47+
uses: github/codeql-action/upload-sarif@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0
4848
with:
4949
sarif_file: results.sarif
5050

@@ -54,6 +54,6 @@ jobs:
5454
needs:
5555
- analysis
5656
if: always()
57-
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
57+
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@62d5939b47144252763c5ff9fffe8c20d76cd806 # v0.4.0
5858
with:
5959
success: ${{ needs.analysis.result == 'success' }}

.github/workflows/prometheus-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2222

2323
- name: Set up JDK for running Gradle
24-
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0
24+
uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0
2525
with:
2626
distribution: temurin
2727
java-version: 17

0 commit comments

Comments
 (0)