Skip to content

Commit f6c32e7

Browse files
authored
Merge pull request #34 from softwareforgood/correct-the-README
Correct the Github action versions in the README
2 parents 68e5e40 + 6e8759f commit f6c32e7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ concurrency:
7777
jobs:
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

0 commit comments

Comments
 (0)