Skip to content

Commit 877272b

Browse files
authored
Merge branch 'main' into diogo/add-dirty-waters-action
2 parents 8665a32 + cd9c7b9 commit 877272b

17 files changed

+43
-36
lines changed

.github/workflows/Lockfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
sh.jbang.dev:443
2929
3030
- name: Checkout repository
31-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
31+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3232

3333
- name: Verify action checksums
3434
uses: ./.github/actions/ghasum

.github/workflows/LockfilePR.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
sh.jbang.dev:443
2727
2828
- name: Checkout repository
29-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3030

3131
- name: Verify action checksums
3232
uses: ./.github/actions/ghasum

.github/workflows/code-qualitiy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
rekor.sigstore.dev:443
3232
3333
- name: Checkout repostiory
34-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
34+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3535

3636
- name: Verify action checksums
3737
uses: ./.github/actions/ghasum
@@ -83,7 +83,7 @@ jobs:
8383
tuf-repo-cdn.sigstore.dev:443
8484
8585
- name: Checkout repository
86-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
86+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
8787

8888
- name: Verify action checksums
8989
uses: ./.github/actions/ghasum

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
uploads.github.com:443
6161
6262
- name: Checkout repository
63-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
63+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6464

6565
- name: Verify action checksums
6666
uses: ./.github/actions/ghasum
@@ -73,7 +73,7 @@ jobs:
7373

7474
# Initializes the CodeQL tools for scanning.
7575
- name: Initialize CodeQL
76-
uses: github/codeql-action/[email protected].5
76+
uses: github/codeql-action/[email protected].9
7777
with:
7878
languages: ${{ matrix.language }}
7979
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -87,6 +87,6 @@ jobs:
8787
run: mvn -B clean package
8888

8989
- name: Perform CodeQL Analysis
90-
uses: github/codeql-action/[email protected].5
90+
uses: github/codeql-action/[email protected].9
9191
with:
9292
category: "/language:${{matrix.language}}"

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
release-assets.githubusercontent.com:443
2929
3030
- name: Checkout repository
31-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
31+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3232

3333
- name: Verify action checksums
3434
uses: ./.github/actions/ghasum

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
repo.maven.apache.org:443
2424
2525
- name: Checkout repository
26-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2727
with:
2828
repository: ${{ github.event.pull_request.head.repo.full_name }}
2929
ref: ${{ github.event.pull_request.head.ref }}

.github/workflows/ensure-release-notrunning.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ jobs:
2121
release-assets.githubusercontent.com:443
2222
2323
- name: Checkout repository
24-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2525

2626
- name: Verify action checksums
2727
uses: ./.github/actions/ghasum
2828

2929
- name: Check for running release action
30+
if: ${{ !startsWith(github.head_ref, 'release/') }}
3031
env:
3132
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3233
run: |
@@ -38,3 +39,9 @@ jobs:
3839
echo "✅ No running release workflows detected."
3940
fi
4041
shell: bash
42+
43+
- name: Skip check for release branch
44+
if: ${{ startsWith(github.head_ref, 'release/') }}
45+
run: |
46+
echo "✅ Skipping release workflow check for release branch: ${{ github.head_ref }}"
47+
shell: bash

.github/workflows/gha.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version 1
22

3-
actions/[email protected].3 A/Paejdu47oer1Zf9zbtOgbMTG3OmOiXsgB6oodFIOU=
4-
actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 g2V9DAwkHBbZHaTOx4M2g/r9wI49KupzyARL47t/rEQ=
3+
actions/[email protected].4 Wn6UGuh8/0fkcOLI8uEQmhssKaMEfnm77brXOpwKe7A=
4+
actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 aYx2ZNrV/U9daVa5XJLnuR3depD7lQqzkyRhH4E9bOU=
55
actions/[email protected] hJDiqW4455iVs8gVcWjiEbjhuvh0oXQKy9fN/BGF3LQ=
66
actions/[email protected] vSiNC7HetrtPF3QhZDzPHWyJ1e8pFltzruLjcw65Sok=
77
actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 XE1eqHfEOlHsHx+3cUQA1OGC3jxGBnmx7eTIdEzwSoI=
@@ -10,8 +10,8 @@ actions/[email protected] MTHBGEHwb+MeIw3xRLiVuM/uyRfuK8hlVXL+Z/yEA8c=
1010
actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 kZHHfo2NsxevBRTKrZnUpDu0Cxgtj5Vooe4x4rylvg8=
1111
actions/[email protected] kZHHfo2NsxevBRTKrZnUpDu0Cxgtj5Vooe4x4rylvg8=
1212
chains-project/[email protected] JTXn8ep3K5YnkSpNVyVVe85RAxg2eQ2X+TKP5A6JgyA=
13-
github/codeql-action@51f77329afa6477de8c49fc9c7046c15b9a4e79d rTbCdqFnyGfvHQ2lm7GsGQdZMcFZ6fFkaW/+6s1LjG4=
14-
github/[email protected].5 rTbCdqFnyGfvHQ2lm7GsGQdZMcFZ6fFkaW/+6s1LjG4=
13+
github/codeql-action@df559355d593797519d70b90fc8edd5db049e7a2 1XCn2OqX5BdogKlLzmioh6Onlhz09pYq9eMNW7V1ZS4=
14+
github/[email protected].9 1XCn2OqX5BdogKlLzmioh6Onlhz09pYq9eMNW7V1ZS4=
1515
jreleaser/[email protected] Ixc/05XDYYHGUvtC6Jt9gB/mpHPIwBX7PR8At1yEWSs=
1616
ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde NlVzVIaycy3fhYp7tgiwvpWvzSsPa48uTVejF6tHEog=
1717
stefanzweifel/[email protected] 5+Y5J+dG+VvtR13IIYuBHcAdJAcnDBQU/U0sRO3YZZw=

.github/workflows/ghasum.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
release-assets.githubusercontent.com:443
2424
2525
- name: Checkout repository
26-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2727
with:
2828
token: ${{ secrets.JRELEASER_GITHUB_TOKEN }}
2929
ref: ${{ github.event.pull_request.head.ref }}

.github/workflows/jreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
# Setups the environment
3535
- name: Checkout repository
36-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
36+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3737
with:
3838
fetch-depth: 0
3939
token: ${{ secrets.JRELEASER_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)