Skip to content
Merged
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/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pelican-action-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
group: testsite-${{ github.ref_name }} # must agree with TARGET
steps:
- name: Checkout the test site
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ env.SOURCE }}
- name: Ignore the action checkout
run: |
echo "self/" >> .git/info/exclude
- name: Checkout self
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: self
- name: Reset output directory ${{ env.TARGET }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/remove_expired.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: true
# Use PAT so the commit triggers other actions
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/stash-action-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
container: quay.io/centos/centos:stream8
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Run action
continue-on-error: true
Expand All @@ -58,7 +58,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-15-intel, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Run unittests
shell: bash
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
needs: test-save
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Test intra-workflow stash
uses: ./stash/restore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
contents: write
steps:

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_dummy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: true
# We have to use a PAT to commit the workflow file
Expand Down
Loading