Skip to content

Commit 2fb559e

Browse files
authored
Merge pull request #102 from cclauss/patch-2
Upgrade actions/checkout
2 parents 41a957c + b5f44f1 commit 2fb559e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/deploy-example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
- name: Deploy
1313
uses: JamesIves/github-pages-deploy-action@v4
1414
with:

.github/workflows/preview-example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: github.event.pull_request.head.repo.full_name == github.repository
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: Deploy preview
2020
uses: rossjrw/pr-preview-action@v1

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ runs:
126126

127127
- name: Deploy preview directory
128128
if: env.deployment_action == 'deploy'
129-
uses: JamesIves/github-pages-deploy-action@65b5dfd4f5bcd3a7403bbc2959c144256167464e # v4.5.0
129+
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4.7.3
130130
with:
131131
token: ${{ inputs.token }}
132132
repository-name: ${{ inputs.deploy-repository }}
@@ -141,7 +141,7 @@ runs:
141141
env.deployment_action == 'deploy' &&
142142
env.deployment_status == 'success' &&
143143
(inputs.comment == 'true' || inputs.comment == true)
144-
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0
144+
uses: marocchino/sticky-pull-request-comment@67d0dec7b07ed060a405f9b2a64b8ab319fdd7db # v2.9.2
145145
with:
146146
header: pr-preview
147147
message: |
@@ -152,7 +152,7 @@ runs:
152152
153153
- name: Remove preview directory
154154
if: env.deployment_action == 'remove'
155-
uses: JamesIves/github-pages-deploy-action@65b5dfd4f5bcd3a7403bbc2959c144256167464e # v4.5.0
155+
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4.7.3
156156
with:
157157
token: ${{ inputs.token }}
158158
repository-name: ${{ inputs.deploy-repository }}
@@ -167,7 +167,7 @@ runs:
167167
env.deployment_action == 'remove' &&
168168
env.deployment_status == 'success' &&
169169
(inputs.comment == 'true' || inputs.comment == true)
170-
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0
170+
uses: marocchino/sticky-pull-request-comment@67d0dec7b07ed060a405f9b2a64b8ab319fdd7db # v2.9.2
171171
with:
172172
header: pr-preview
173173
message: |

0 commit comments

Comments
 (0)