Skip to content

Commit cf7d193

Browse files
committed
Bump version for checkout, setup-python and upload-artifact GH actions
1 parent 1dfe857 commit cf7d193

7 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/pr-close-signal.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
mkdir -p ./pr
1717
printf ${{ github.event.number }} > ./pr/NUM
1818
- name: Upload Diff
19-
uses: actions/upload-artifact@v4
19+
uses: actions/upload-artifact@v5
2020
with:
2121
name: pr
2222
path: ./pr

.github/workflows/pr-comment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
contents: write
8383
steps:
8484
- name: 'Checkout md outputs'
85-
uses: actions/checkout@v4
85+
uses: actions/checkout@v5
8686
with:
8787
ref: md-outputs
8888
path: built

.github/workflows/pr-receive.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: "Upload PR number"
2626
id: upload
2727
if: ${{ always() }}
28-
uses: actions/upload-artifact@v4
28+
uses: actions/upload-artifact@v5
2929
with:
3030
name: pr
3131
path: ${{ github.workspace }}/NR
@@ -58,10 +58,10 @@ jobs:
5858
MD: ${{ github.workspace }}/site/built
5959
steps:
6060
- name: "Check Out Main Branch"
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262

6363
- name: "Check Out Staging Branch"
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v5
6565
with:
6666
ref: md-outputs
6767
path: ${{ env.MD }}
@@ -107,21 +107,21 @@ jobs:
107107
shell: Rscript {0}
108108

109109
- name: "Upload PR"
110-
uses: actions/upload-artifact@v4
110+
uses: actions/upload-artifact@v5
111111
with:
112112
name: pr
113113
path: ${{ env.PR }}
114114
overwrite: true
115115

116116
- name: "Upload Diff"
117-
uses: actions/upload-artifact@v4
117+
uses: actions/upload-artifact@v5
118118
with:
119119
name: diff
120120
path: ${{ env.CHIVE }}
121121
retention-days: 1
122122

123123
- name: "Upload Build"
124-
uses: actions/upload-artifact@v4
124+
uses: actions/upload-artifact@v5
125125
with:
126126
name: built
127127
path: ${{ env.MD }}

.github/workflows/sandpaper-main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636

3737
- name: "Checkout Lesson"
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939

4040
- name: "Set up R"
4141
uses: r-lib/actions/setup-r@v2

.github/workflows/update-cache.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
needed: ${{ steps.renv.outputs.exists }}
4444
steps:
4545
- name: "Checkout Lesson"
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747
- id: renv
4848
run: |
4949
if [[ -d renv ]]; then
@@ -76,7 +76,7 @@ jobs:
7676
steps:
7777

7878
- name: "Checkout Lesson"
79-
uses: actions/checkout@v4
79+
uses: actions/checkout@v5
8080

8181
- name: "Set up R"
8282
uses: r-lib/actions/setup-r@v2

.github/workflows/update-workflows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
if: ${{ needs.check_token.outputs.workflow == 'true' }}
3737
steps:
3838
- name: "Checkout Repository"
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040

4141
- name: Update Workflows
4242
id: update

episodes/23-continuous-integration-automated-testing.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,10 @@ jobs:
190190
# Next we need to checkout out repository, and set up Python
191191
# A 'name' is just an optional label shown in the log - helpful to clarify progress - and can be anything
192192
- name: Checkout repository
193-
uses: actions/checkout@v4
193+
uses: actions/checkout@v5
194194
195195
- name: Set up Python 3.11
196-
uses: actions/setup-python@v5
196+
uses: actions/setup-python@v6
197197
with:
198198
python-version: "3.11"
199199
@@ -372,10 +372,10 @@ jobs:
372372
steps:
373373
374374
- name: Checkout repository
375-
uses: actions/checkout@v4
375+
uses: actions/checkout@v5
376376
377377
- name: Set up Python ${{ matrix.python-version }}
378-
uses: actions/setup-python@v5
378+
uses: actions/setup-python@v6
379379
with:
380380
# Here we add the reference to the python-version matrix values
381381
python-version: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)