mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.1 to 4.2.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](eef61447b9...11bd71901b)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
32 lines
1,005 B
YAML
32 lines
1,005 B
YAML
name: Create ARM node (REUSABLE)
|
|
|
|
on:
|
|
workflow_call:
|
|
secrets:
|
|
SCW_ACCESS_KEY:
|
|
required: true
|
|
SCW_SECRET_KEY:
|
|
required: true
|
|
SCW_DEFAULT_PROJECT_ID:
|
|
required: true
|
|
SCW_DEFAULT_ORGANIZATION_ID:
|
|
required: true
|
|
ARM_ID:
|
|
required: true
|
|
|
|
jobs:
|
|
rm:
|
|
if: ${{ always() }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Prepare
|
|
- name: Checkout source code
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- name: Delete ARM VM
|
|
uses: scaleway/action-scw@be2696f261325a78354eda14988c80405f33e082
|
|
with:
|
|
args: instance server delete ${{ secrets.ARM_ID }} zone=fr-par-2 with-ip=true with-volumes=all force-shutdown=true
|
|
access-key: ${{ secrets.SCW_ACCESS_KEY }}
|
|
secret-key: ${{ secrets.SCW_SECRET_KEY }}
|
|
default-project-id: ${{ secrets.SCW_DEFAULT_PROJECT_ID }}
|
|
default-organization-id: ${{ secrets.SCW_DEFAULT_ORGANIZATION_ID }}
|