Skip to content

Commit ebf7490

Browse files
Use internal Actions bot for checkout
1 parent cdd0348 commit ebf7490

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/restore.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Restore Dataset
2-
run-name: ${{ github.actor }} retrieving data-sets
2+
run-name: ${{ github.actor }} retrieving data-sets
33
on:
44
workflow_dispatch:
55
inputs:
@@ -19,7 +19,7 @@ on:
1919
required: false
2020
type: string
2121
default: 'master'
22-
version:
22+
version:
2323
description: 'GHES Version of dataset'
2424
required: false
2525
type: string
@@ -40,7 +40,7 @@ on:
4040
required: false
4141
type: string
4242
default: 'master'
43-
version:
43+
version:
4444
description: 'GHES Version of dataset'
4545
required: false
4646
type: string
@@ -53,7 +53,8 @@ jobs:
5353
with:
5454
repository: github/backup-utils-private
5555
ref: ${{ inputs.ref }}
56-
- run: docker build . --file Dockerfile --tag backup-utils
56+
token: "${{ secrets.INTERNAL_ACTIONS_DX_BOT_ACCOUNT_TOKEN }}"
57+
- run: docker build . --file Dockerfile --tag backup-utils
5758
- run: docker save backup-utils -o backup-utils.tar
5859
- uses: actions/upload-artifact@v3
5960
with:
@@ -68,7 +69,7 @@ jobs:
6869
- uses: actions/download-artifact@v3
6970
with:
7071
name: backup-utils
71-
- name: Load docker container
72+
- name: Load docker container
7273
run: docker load -i backup-utils.tar
7374
- uses: actions/checkout@v3
7475
with:

0 commit comments

Comments
 (0)