Skip to content

Commit 3ef3e0a

Browse files
committed
Update actions
1 parent b11aaa3 commit 3ef3e0a

6 files changed

Lines changed: 24 additions & 16 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
r: RD
5555

5656
steps:
57-
- uses: actions/checkout@v5
57+
- uses: actions/checkout@v6
5858

5959
- name: SessionInfo
6060
run: ${{ matrix.r }} -q -e 'sessionInfo()'
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ubuntu-latest
7070
steps:
7171
- name: Checkout Project
72-
uses: actions/checkout@v5
72+
uses: actions/checkout@v6
7373

7474
- name: Setup
7575
uses: eddelbuettel/github-actions/r-ci@master

.github/workflows/docker.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323
uses: actions/checkout@v6
2424

2525
- name: Set up Docker Buildx
26-
uses: docker/setup-buildx-action@v2
26+
uses: docker/setup-buildx-action@v4
2727

2828
- name: Login to DockerHub
29-
uses: docker/login-action@v2
29+
uses: docker/login-action@v4
3030
with:
3131
username: ${{ secrets.DOCKER_USERNAME }}
3232
password: ${{ secrets.DOCKER_PASSWORD }}
3333

3434
- name: Build and push
35-
uses: docker/build-push-action@v3
35+
uses: docker/build-push-action@v7
3636
with:
3737
push: true
3838
context: docker/${{ matrix.tag }}
@@ -46,19 +46,19 @@ jobs:
4646

4747
steps:
4848
- name: Checkout
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@v6
5050

5151
- name: Set up Docker Buildx
52-
uses: docker/setup-buildx-action@v2
52+
uses: docker/setup-buildx-action@v4
5353

5454
- name: Login to DockerHub
55-
uses: docker/login-action@v2
55+
uses: docker/login-action@v4
5656
with:
5757
username: ${{ secrets.DOCKER_USERNAME }}
5858
password: ${{ secrets.DOCKER_PASSWORD }}
5959

6060
- name: Build and push
61-
uses: docker/build-push-action@v3
61+
uses: docker/build-push-action@v7
6262
with:
6363
push: true
6464
context: docker/run
@@ -72,19 +72,19 @@ jobs:
7272

7373
steps:
7474
- name: Checkout
75-
uses: actions/checkout@v3
75+
uses: actions/checkout@v6
7676

7777
- name: Set up Docker Buildx
78-
uses: docker/setup-buildx-action@v2
78+
uses: docker/setup-buildx-action@v4
7979

8080
- name: Login to DockerHub
81-
uses: docker/login-action@v2
81+
uses: docker/login-action@v4
8282
with:
8383
username: ${{ secrets.DOCKER_USERNAME }}
8484
password: ${{ secrets.DOCKER_PASSWORD }}
8585

8686
- name: Build and push
87-
uses: docker/build-push-action@v3
87+
uses: docker/build-push-action@v7
8888
with:
8989
push: true
9090
context: docker/plus

.github/workflows/linuxarm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626

2727
- name: Setup
2828
uses: eddelbuettel/github-actions/r-ci@master

.github/workflows/macos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727

2828
- name: Setup
2929
uses: eddelbuettel/github-actions/r-ci@master

.github/workflows/stale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
stale:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/stale@v8
14+
- uses: actions/stale@v10
1515
with:
1616
repo-token: ${{ secrets.GITHUB_TOKEN }}
1717
stale-issue-label: 'no-issue-activity'

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2026-06-09 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* .github/workflows/ci.yaml: Update actions to current versions
4+
* .github/workflows/docker.yaml: Idem
5+
* .github/workflows/macos.yaml: Idem
6+
* .github/workflows/stale.yaml: Idem
7+
* .github/workflows/linuxarm.yaml: Idem
8+
19
2026-06-08 Dirk Eddelbuettel <edd@debian.org>
210

311
* R/RcppLdpath.R: Prefix three messages with 'Rcpp:::' to make it

0 commit comments

Comments
 (0)