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/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ jobs:
echo -n "${{ steps.commit.outputs.sha }}" > rcc-smoke-sha.txt
shell: bash

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: rcc-smoke-sha
path: rcc-smoke-sha.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:

- name: Upload check results
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ inputs.results }}-results
path: check
2 changes: 1 addition & 1 deletion .github/workflows/commit-suggest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: changes-patch
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ runs:

- name: Upload patch artifact
if: steps.check.outputs.has_changes == 'true' && steps.repo-state.outputs.foreign == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: changes-patch
path: changes.patch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/covr/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ runs:

- name: Upload test results
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-test-failures
path: ${{ runner.temp }}/package
2 changes: 1 addition & 1 deletion .github/workflows/pkgdown-deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ runs:
using: "composite"
steps:
- name: Deploy site
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3.0.2
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60 # v4.0.0
with:
timeout_minutes: 15
max_attempts: 10
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/revdep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ jobs:

- name: Upload check results
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.package }}-results
path: revdep/${{ matrix.package }}
Expand Down
30 changes: 15 additions & 15 deletions .github/workflows/revdep2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
Rscript ./.github/workflows/revdep2/plan.R
shell: bash

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: steps.plan.outputs.shards != '0'
with:
name: revdep2-plan
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
Rscript ./.github/workflows/revdep2/build.R
shell: bash

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: revdep2-pkg
path: ${{ runner.temp }}/pkg
Expand Down Expand Up @@ -246,14 +246,14 @@ jobs:
install.packages("jsonlite")
shell: Rscript {0}

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: revdep2-plan
path: ${{ runner.temp }}/plan

# The preflight downloads every dependency binary once; saving the pak
# cache under the plan's hash hands the shards a warm start.
- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: ~/.cache/R/pkgcache
key: revdep2-pak-${{ needs.plan.outputs.plan_hash }}
Expand All @@ -269,7 +269,7 @@ jobs:
Rscript ./.github/workflows/revdep2/preflight.R
shell: bash

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: revdep2-preflight
path: ${{ runner.temp }}/preflight
Expand Down Expand Up @@ -338,26 +338,26 @@ jobs:
install.packages(c("jsonlite", "rcmdcheck"))
shell: Rscript {0}

- uses: actions/cache/restore@v4
- uses: actions/cache/restore@v5
with:
path: ~/.cache/R/pkgcache
key: revdep2-pak-${{ needs.plan.outputs.plan_hash }}
restore-keys: |
revdep2-pak-

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: revdep2-plan
path: ${{ runner.temp }}/plan

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: revdep2-pkg
path: ${{ runner.temp }}/pkg

# The baseline lives on an earlier run; absence is not an error, the
# shard just checks the CRAN version fresh.
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
if: needs.plan.outputs.baseline_run != '0'
continue-on-error: true
with:
Expand All @@ -384,7 +384,7 @@ jobs:
# Named per attempt: a re-run of one shard must not overwrite the results
# the other shards uploaded in the first attempt; the collector reads
# every attempt and lets the later one win per package.
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: always()
with:
name: revdep2-results-${{ matrix.shard }}-${{ github.run_attempt }}
Expand Down Expand Up @@ -439,17 +439,17 @@ jobs:
pak::pkg_install("krlmlr/revdepcheck")
shell: Rscript {0}

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: revdep2-plan
path: ${{ runner.temp }}/plan

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
pattern: revdep2-results-*
path: ${{ runner.temp }}/results

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
if: env.REVDEP2_RETRY_RUN != ''
continue-on-error: true
with:
Expand All @@ -469,15 +469,15 @@ jobs:
Rscript ./.github/workflows/revdep2/collect.R
shell: bash

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: always()
with:
name: revdep2-report
path: revdep
retention-days: 90
overwrite: true

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: always()
with:
name: revdep2-baseline
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-citation-cff.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
Expand Down
Loading