Skip to content

Commit 3da27cc

Browse files
authored
Merge pull request #5 from Siddhant-K-code/siddhant/action-improvements
explicitly use string in shutdown timeout & bump checkout to `v4`
2 parents da412f1 + f1ee0ea commit 3da27cc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/create-vm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
machine-zone: ${{ steps.create-runner.outputs.machine-zone }}
2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
- name: Authenticate to Google Cloud
3232
id: auth
3333
if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ inputs:
4545
required: true
4646
shutdown_timeout:
4747
description: "Shutdown grace period (in seconds)."
48-
default: 30
48+
default: 30s
4949
required: true
5050
task:
5151
description: Additional context about the workflow
@@ -76,7 +76,7 @@ runs:
7676
echo "❌ Job actions are not allowed to run in forks" >> $GITHUB_STEP_SUMMARY
7777
exit 1
7878
- name: Checkout repository
79-
uses: actions/checkout@v3
79+
uses: actions/checkout@v4
8080
- name: Authenticate to Google Cloud
8181
id: auth
8282
if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name

0 commit comments

Comments
 (0)