Skip to content

Commit 669d3ff

Browse files
committed
🔄 Synced local '.github/workflows/' with remote '.github/workflows/'
release-null
1 parent b64b09f commit 669d3ff

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

.github/workflows/delete-preview.yml

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

1919
# Check out current repository
2020
- name: checkout
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 0
2424

.github/workflows/pull_request.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
20+
token: ${{ secrets.GH_PAT }}
2021

2122
# Use the yaml-env-action action.
2223
- name: Load environment from YAML
@@ -41,6 +42,7 @@ jobs:
4142
git push --set-upstream origin $branch_name
4243
shell: bash
4344

45+
4446
outputs:
4547
toggle_spell_check: "${{ env.SPELL_CHECK }}"
4648
toggle_style_code: "${{ env.STYLE_CODE }}"
@@ -59,6 +61,7 @@ jobs:
5961
check_type: spelling
6062
error_min: 3
6163
gh_pat: secrets.GH_PAT
64+
branch_name: ${GITHUB_HEAD_REF}
6265

6366
url-check:
6467
name: Check URLs
@@ -69,6 +72,7 @@ jobs:
6972
check_type: urls
7073
error_min: 0
7174
gh_pat: secrets.GH_PAT
75+
branch_name: ${GITHUB_HEAD_REF}
7276

7377
quiz-check:
7478
name: Check quiz formatting
@@ -79,6 +83,7 @@ jobs:
7983
check_type: quiz_format
8084
error_min: 0
8185
gh_pat: secrets.GH_PAT
86+
branch_name: ${GITHUB_HEAD_REF}
8287

8388
############################# Style the code ###################################
8489
style-code:
@@ -91,7 +96,7 @@ jobs:
9196

9297
steps:
9398
- name: Checkout files
94-
uses: actions/checkout@v3
99+
uses: actions/checkout@v4
95100
with:
96101
fetch-depth: 0
97102

@@ -117,7 +122,7 @@ jobs:
117122

118123
steps:
119124
- name: Checkout files
120-
uses: actions/checkout@v3
125+
uses: actions/checkout@v4
121126
with:
122127
fetch-depth: 0
123128

.github/workflows/render-all.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
paths:
1111
- '**.Rmd'
1212
- assets/*
13+
- quizzes/*
1314

1415
jobs:
1516

@@ -18,7 +19,7 @@ jobs:
1819
runs-on: ubuntu-latest
1920
steps:
2021
- name: Checkout
21-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2223

2324
# Use the yaml-env-action action.
2425
- name: Load environment from YAML
@@ -43,7 +44,7 @@ jobs:
4344

4445
steps:
4546
- name: checkout
46-
uses: actions/checkout@v3
47+
uses: actions/checkout@v4
4748
with:
4849
fetch-depth: 0
4950
token: ${{ secrets.GH_PAT }}
@@ -95,7 +96,7 @@ jobs:
9596

9697
steps:
9798
- name: checkout
98-
uses: actions/checkout@v3
99+
uses: actions/checkout@v4
99100
with:
100101
fetch-depth: 0
101102
token: ${{ secrets.GH_PAT }}
@@ -134,7 +135,7 @@ jobs:
134135

135136
steps:
136137
- name: checkout
137-
uses: actions/checkout@v3
138+
uses: actions/checkout@v4
138139
with:
139140
fetch-depth: 0
140141
token: ${{ secrets.GH_PAT }}
@@ -210,7 +211,7 @@ jobs:
210211

211212
steps:
212213
- name: checkout
213-
uses: actions/checkout@v3
214+
uses: actions/checkout@v4
214215
with:
215216
fetch-depth: 0
216217
token: ${{ secrets.GH_PAT }}

.github/workflows/transfer-rendered-files.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
# Use the yaml-env-action action.
2727
- name: Load environment from YAML
@@ -65,7 +65,7 @@ jobs:
6565
6666
- name: Checkout code from Leanpub repo
6767
if: ${{ steps.git_repo_check.outputs.git_results == 'TRUE' }}
68-
uses: actions/checkout@v3
68+
uses: actions/checkout@v4
6969
with:
7070
repository: ${{ steps.git_repo_check.outputs.leanpub_repo }}
7171
token: ${{ secrets.GH_PAT }}

0 commit comments

Comments
 (0)