Skip to content

Commit 11d7da8

Browse files
authored
Merge pull request #537 from eitsupi/update-github-actions
Update GItHub Actions version
2 parents 79f5a8f + 4324d41 commit 11d7da8

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"

.github/workflows/coverage.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
R_LANGSVR_POOL_SIZE: 1
3939
R_LANGSVR_TEST_FAST: NO
4040
steps:
41-
- uses: actions/checkout@v1
42-
- uses: r-lib/actions/setup-r@v1
41+
- uses: actions/checkout@v3
42+
- uses: r-lib/actions/setup-r@v2
4343
with:
44-
r-version: latest
44+
r-version: release
4545
- name: Create log directory on Linux or macOS
4646
if: runner.os != 'Windows'
4747
run: mkdir -p $(dirname ${{ env.R_LANGSVR_LOG }})

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
container: rocker/tidyverse
1616
steps:
17-
- uses: actions/checkout@v1
17+
- uses: actions/checkout@v3
1818
- name: Install apt-get dependencies
1919
run: |
2020
apt-get update

.github/workflows/rcmdcheck.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
R_LANGSVR_LOG: ${{ matrix.log_file }}
3838
R_LANGSVR_POOL_SIZE: 1
3939
steps:
40-
- uses: actions/checkout@v1
41-
- uses: r-lib/actions/setup-r@v1
40+
- uses: actions/checkout@v3
41+
- uses: r-lib/actions/setup-r@v2
4242
with:
43-
r-version: latest
43+
r-version: release
4444
- name: Create log directory on Linux or macOS
4545
if: runner.os != 'Windows'
4646
run: mkdir -p $(dirname ${{ env.R_LANGSVR_LOG }})

.github/workflows/tagbot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
container: rtagbot/tagbot:latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- name: fetch all tags and branches
1515
run: git fetch --prune --unshallow --tags
1616
- name: check and publish release

0 commit comments

Comments
 (0)