Skip to content

Commit 81f2e7d

Browse files
authored
Merge pull request #68 from insightsengineering/update-actions-versions
2 parents 9cead57 + 4734fa0 commit 81f2e7d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout Code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Checkout ${{ matrix.package.name }}
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636

3737
- name: Generate validation report for ${{ matrix.package.name }}
3838
id: validation
@@ -45,7 +45,7 @@ jobs:
4545
additional_tlmgr_packages: ${{ matrix.package.additional_tlmgr_packages }}
4646

4747
- name: Upload ${{ matrix.package.name }} validation report
48-
uses: actions/upload-artifact@v2
48+
uses: actions/upload-artifact@v4
4949
if: success()
5050
with:
5151
name: ${{ matrix.package.name }} validation report

.github/workflows/test_no_cache.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout ${{ matrix.package.name }}
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030

3131
- name: Generate validation report for ${{ matrix.package.name }}
3232
uses: ./
@@ -39,7 +39,7 @@ jobs:
3939
no_cache: true
4040

4141
- name: Upload ${{ matrix.package.name }} validation report
42-
uses: actions/upload-artifact@v2
42+
uses: actions/upload-artifact@v4
4343
if: success()
4444
with:
4545
name: ${{ matrix.package.name }} validation report

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
deployments: write
149149
steps:
150150
- name: Checkout repo 🛎
151-
uses: actions/checkout@v3
151+
uses: actions/checkout@v4
152152

153153
- name: Build report 🏗
154154
id: validation

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ runs:
7777

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

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

0 commit comments

Comments
 (0)