Skip to content

Commit

Permalink
Update to actions/checkout@v4
Browse files Browse the repository at this point in the history
First part of adapting to Node 16 deprecation in Github action runners
  • Loading branch information
cderv committed Feb 27, 2024
1 parent 7f4bd30 commit c8cb499
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions/launcher/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: 'Builds the Quarto Launcher'
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
uses: actions-rs/toolchain@v1
with:
toolchain: 1.63.0
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
tag_pushed: ${{ steps.version_commit.outputs.tag_pushed }}
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
needs: [configure]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ needs.configure.outputs.version_commit }}

Expand All @@ -107,7 +107,7 @@ jobs:
needs: [configure]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ needs.configure.outputs.version_commit }}

Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
needs: [configure]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ needs.configure.outputs.version_commit }}

Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
needs: [configure]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ needs.configure.outputs.version_commit }}

Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
needs: [configure]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ needs.configure.outputs.version_commit }}

Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
needs: [configure]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ needs.configure.outputs.version_commit }}

Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:
rustup.exe toolchain install 1.63.0 --component rustfmt --component clippy --no-self-update
rustup.exe default 1.63.0
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ needs.configure.outputs.version_commit }}

Expand Down Expand Up @@ -366,7 +366,7 @@ jobs:
needs: [configure]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ needs.configure.outputs.version_commit }}

Expand Down Expand Up @@ -562,7 +562,7 @@ jobs:
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Revert commit of version.txt
if: ${{ needs.configure.outputs.pushed }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# checkout full tree
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# checkout full tree
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-quarto-latexmk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- { os: ubuntu-latest }

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-smokes-parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
BUCKETS: ${{ steps.tests-buckets.outputs.BUCKETS }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-smokes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Fix temp dir to use runner one (windows)
if: runner.os == 'Windows'
Expand Down

0 comments on commit c8cb499

Please sign in to comment.