Skip to content

Commit

Permalink
Merge pull request #68 from insightsengineering/update-actions-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif authored Feb 8, 2024
2 parents 9cead57 + 4734fa0 commit 81f2e7d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout ${{ matrix.package.name }}
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Generate validation report for ${{ matrix.package.name }}
id: validation
Expand All @@ -45,7 +45,7 @@ jobs:
additional_tlmgr_packages: ${{ matrix.package.additional_tlmgr_packages }}

- name: Upload ${{ matrix.package.name }} validation report
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: success()
with:
name: ${{ matrix.package.name }} validation report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_no_cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout ${{ matrix.package.name }}
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Generate validation report for ${{ matrix.package.name }}
uses: ./
Expand All @@ -39,7 +39,7 @@ jobs:
no_cache: true

- name: Upload ${{ matrix.package.name }} validation report
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: success()
with:
name: ${{ matrix.package.name }} validation report
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
deployments: write
steps:
- name: Checkout repo 🛎
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build report 🏗
id: validation
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ runs:

- name: Cache R packages
if: "contains(inputs.no_cache, 'false')"
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: /home/runner/work/_temp/Library
key: ${{ inputs.cache_version }}-${{ runner.os }}-${{ steps.r_version.outputs.R_VERSION }}-${{ hashFiles('DESCRIPTION') }}
restore-keys: ${{ inputs.cache_version }}-${{ runner.os }}-${{ steps.r_version.outputs.R_VERSION }}

- name: Cache Tex packages
if: "contains(inputs.no_cache, 'false')"
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: /home/runner/work/_temp/TinyTeX
key: ${{ inputs.cache_version }}-${{ runner.os }}-${{ steps.texlive_version.outputs.TEX_LIVE_VERSION }}-${{ hashFiles(inputs.report_template_path) }}
Expand Down

0 comments on commit 81f2e7d

Please sign in to comment.