Skip to content

Commit 50a9585

Browse files
committed
More updates of GitHub Actions
1 parent 62bdc15 commit 50a9585

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

.github/workflows/docker.yaml

+12-12
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323

2424
- name: Set up Docker Buildx
25-
uses: docker/setup-buildx-action@v1
25+
uses: docker/setup-buildx-action@v2
2626

2727
- name: Login to DockerHub
28-
uses: docker/login-action@v1
28+
uses: docker/login-action@v2
2929
with:
3030
username: ${{ secrets.DOCKER_USERNAME }}
3131
password: ${{ secrets.DOCKER_PASSWORD }}
3232

3333
- name: Build and push
34-
uses: docker/build-push-action@v2
34+
uses: docker/build-push-action@v3
3535
with:
3636
push: true
3737
context: docker/${{ matrix.tag }}
@@ -45,19 +45,19 @@ jobs:
4545

4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v2
48+
uses: actions/checkout@v3
4949

5050
- name: Set up Docker Buildx
51-
uses: docker/setup-buildx-action@v1
51+
uses: docker/setup-buildx-action@v2
5252

5353
- name: Login to DockerHub
54-
uses: docker/login-action@v1
54+
uses: docker/login-action@v2
5555
with:
5656
username: ${{ secrets.DOCKER_USERNAME }}
5757
password: ${{ secrets.DOCKER_PASSWORD }}
5858

5959
- name: Build and push
60-
uses: docker/build-push-action@v2
60+
uses: docker/build-push-action@v3
6161
with:
6262
push: true
6363
context: docker/run
@@ -71,19 +71,19 @@ jobs:
7171

7272
steps:
7373
- name: Checkout
74-
uses: actions/checkout@v2
74+
uses: actions/checkout@v3
7575

7676
- name: Set up Docker Buildx
77-
uses: docker/setup-buildx-action@v1
77+
uses: docker/setup-buildx-action@v2
7878

7979
- name: Login to DockerHub
80-
uses: docker/login-action@v1
80+
uses: docker/login-action@v2
8181
with:
8282
username: ${{ secrets.DOCKER_USERNAME }}
8383
password: ${{ secrets.DOCKER_PASSWORD }}
8484

8585
- name: Build and push
86-
uses: docker/build-push-action@v2
86+
uses: docker/build-push-action@v3
8787
with:
8888
push: true
8989
context: docker/plus

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2022-12-29 Dirk Eddelbuettel <[email protected]>
2+
3+
* .github/workflows/docker.yaml (jobs): Update several actions
4+
15
2022-12-26 Dirk Eddelbuettel <[email protected]>
26

37
* .github/workflows/stale.yaml (jobs): Update actions/stale@v6

inst/NEWS.Rd

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
\item The source path for attributes received one more protection
2828
from spaces (Dirk in \ghpr{1235} addressing \ghit{1234}).
2929
}
30+
\item Changes in Rcpp Deployment:
31+
\itemize{
32+
\item Several GitHub Actions have been updated.
33+
}
3034
}
3135
}
3236

0 commit comments

Comments
 (0)