Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # full history for hatch-vcs

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
# The tag, not main: `:latest` must keep pointing at released code. Only
# the OS packages underneath it are allowed to move.
- name: Checkout the release tag
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ steps.release.outputs.tag }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
id-token: write # for cosign keyless signing via OIDC
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # full history for hatch-vcs

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
issues: write # to open an issue on new findings
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run Trivy on :latest
id: trivy
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Open issue on findings
if: steps.findings.outputs.found == 'true'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const fs = require('fs');
Expand Down