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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- linux-x64

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup SBCL (Ubuntu)
if: runner.os == 'Linux'
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
run: mv ${{ matrix.target }}.${{ env._EXT }} ~/

- name: Checkout binaries repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{ env.REPO_BIN }}
persist-credentials: false
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- macos-x64

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup SBCL (macOS)
if: runner.os == 'macOS'
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
run: mv ${{ matrix.target }}.${{ env._EXT }} ~/

- name: Checkout binaries repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{ env.REPO_BIN }}
persist-credentials: false
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
- win-x64

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup SBCL (Windows)
if: runner.os == 'Windows'
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
run: mv ${{ matrix.target }}.${{ env._EXT }} ~/

- name: Checkout binaries repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{ env.REPO_BIN }}
persist-credentials: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
publish-doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: true

Expand All @@ -47,7 +47,7 @@ jobs:
npm run build

- name: Check out GitHub page repo
uses: actions/checkout@v4
uses: actions/checkout@v5
if: github.ref == 'refs/heads/master'
with:
repository: cl-qob/cl-qob.github.io
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/global.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
with:
args: install sbcl

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install Quicklisp
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
with:
args: install sbcl

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install Quicklisp
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_submodules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
persist-credentials: false
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/webinstall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install Qob (Unix)
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
Expand Down
Loading