Skip to content

Commit 2145662

Browse files
committed
Manually update workflows
1 parent fe80724 commit 2145662

9 files changed

Lines changed: 8 additions & 210 deletions

.github/workflows/README.md

100755100644
File mode changed.

.github/workflows/docker_build_deploy.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
id: build-and-deploy
128128
uses: carpentries/actions/build-and-deploy@main
129129
with:
130-
reset: ${{ vars.BUILD_RESET || github.event.inputs.reset || 'false' }}
130+
reset: ${{ github.event.inputs.reset || 'false' }}
131131
skip-manage-deps: ${{ github.event.inputs.force-skip-manage-deps == 'true' || steps.build-container-deps.outputs.renv-cache-available || steps.build-container-deps.outputs.backup-cache-used || 'false' }}
132132

133133
update-container-version:
@@ -150,7 +150,6 @@ jobs:
150150
uses: carpentries/actions/record-container-version@main
151151
with:
152152
CONTAINER_VER: ${{ needs.preflight.outputs.wb-vers }}
153-
AUTO_MERGE: ${{ vars.AUTO_MERGE_CONTAINER_VERSION_UPDATE || 'true' }}
154153
token: ${{ secrets.GITHUB_TOKEN }}
155154
role-to-assume: ${{ secrets.AWS_GH_OIDC_ARN }}
156155
aws-region: ${{ secrets.AWS_GH_OIDC_REGION }}

.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@v5
19+
uses: actions/upload-artifact@v4
2020
with:
2121
name: pr
2222
path: ./pr

.github/workflows/pr-comment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ jobs:
127127
permissions:
128128
contents: write
129129
steps:
130-
- name: 'Checkout md outputs'
131-
uses: actions/checkout@v5
130+
- name: "Checkout md outputs"
131+
uses: actions/checkout@v4
132132
with:
133133
ref: md-outputs
134134
path: built

.github/workflows/pr-receive.yaml

Lines changed: 0 additions & 132 deletions
This file was deleted.

.github/workflows/sandpaper-main.yaml

Lines changed: 0 additions & 64 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.18.4
1+
0.18.2

.github/workflows/update-cache.yaml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,7 @@ jobs:
6363
renv-needed: ${{ steps.renv-check.outputs.renv-needed }}
6464
steps:
6565
- name: "Checkout Lesson"
66-
uses: actions/checkout@v5
67-
- id: renv
68-
run: |
69-
if [[ -d renv ]]; then
70-
echo "exists=true" >> $GITHUB_OUTPUT
71-
fi
66+
uses: actions/checkout@v4
7267

7368
- name: "Is renv required?"
7469
id: renv-check
@@ -94,7 +89,7 @@ jobs:
9489
RENV_PATHS_ROOT: ~/.local/share/renv/
9590
steps:
9691
- name: "Checkout Lesson"
97-
uses: actions/checkout@v5
92+
uses: actions/checkout@v4
9893

9994
- name: "Set up R"
10095
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
@@ -28,7 +28,7 @@ jobs:
2828
id-token: write
2929
steps:
3030
- name: "Checkout Repository"
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v4
3232

3333
- name: "Validate Current Org and Workflow"
3434
id: validate-org-workflow

0 commit comments

Comments
 (0)