File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ concurrency:
7777jobs:
7878 deploy: # this can be any identifier you like
7979 name: Deploy # This can be anything you'd like
80- uses: softwareforgood/reusable-github-workflows/.github/workflows/deploy-to-pantheon.yml@v0
80+ uses: softwareforgood/reusable-github-workflows/.github/workflows/deploy-to-pantheon.yml@v1
8181 with:
8282 TERMINUS_SITE: terminus-site-name # put your terminus site name here
8383 secrets:
@@ -107,12 +107,12 @@ jobs:
107107 runs-on: ubuntu-latest
108108 steps:
109109 - name: Check out code
110- uses: actions/checkout@v3
110+ uses: actions/checkout@v4
111111
112112 # additional build steps
113113
114114 - name: Upload compiled assets
115- uses: actions/upload-artifact@v3
115+ uses: actions/upload-artifact@v4
116116 with:
117117 name: assets
118118 # when these paths are downloaded in deploy-to-pantheon.yml, they'll be returned to the original locations in the tree
@@ -121,7 +121,7 @@ jobs:
121121 deploy:
122122 name: Deploy
123123 needs: [build] # this is VERY important; your build needs to have completed before deploying
124- uses: softwareforgood/reusable-github-workflows/.github/workflows/deploy-to-pantheon.yml@v0
124+ uses: softwareforgood/reusable-github-workflows/.github/workflows/deploy-to-pantheon.yml@v1
125125 with:
126126 TERMINUS_SITE: terminus-site-name
127127 ASSETS_ARTIFACT_PATH: path/to/some/assets
You can’t perform that action at this time.
0 commit comments