Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
build/reports/tests/

- name: Checkout badges branch
uses: actions/checkout@v4
uses: actions/checkout@v7
if: github.event_name != 'pull_request'
with:
ref: badges
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-maven-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
environment: maven-central-snapshots
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-from-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
# github.sha is the tip of main captured once at dispatch time; it does
# not move if main receives new pushes, and it is stable across reruns.
- name: Checkout trusted main commit
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ github.sha }}
fetch-depth: 0
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
release_commit_sha: ${{ steps.commit.outputs.release_commit_sha }}
steps:
- name: Checkout trusted main commit
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ needs.validate.outputs.release_sha }}
fetch-depth: 0
Expand Down Expand Up @@ -418,7 +418,7 @@ jobs:
contents: read
steps:
- name: Checkout immutable release commit
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ needs.prepare-release.outputs.release_commit_sha }}
persist-credentials: false
Expand Down Expand Up @@ -466,7 +466,7 @@ jobs:
contents: write # create the GitHub release for the existing tag
steps:
- name: Checkout immutable release commit
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ needs.prepare-release.outputs.release_commit_sha }}
persist-credentials: false
Expand Down Expand Up @@ -505,7 +505,7 @@ jobs:
id-token: write # OIDC token for npm trusted publishing (no stored secret)
steps:
- name: Checkout immutable release commit
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ needs.prepare-release.outputs.release_commit_sha }}
persist-credentials: false
Expand Down