Skip to content

Commit

Permalink
Merge pull request #66 from zooniverse/update-actions-v4
Browse files Browse the repository at this point in the history
Update checkout & upload-artifact actions to v4
  • Loading branch information
zwolf committed Mar 15, 2024
2 parents ca0db6e + d4522d0 commit 794bfeb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Write commit_id.txt
run: echo ${{ github.sha }} > ./build/commit_id.txt
- name: Upload files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: 'build'
path: ./build
4 changes: 2 additions & 2 deletions .github/workflows/deploy_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Write commit_id.txt
run: echo ${{ github.sha }} > ./build/commit_id.txt
- name: Upload files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: 'build'
path: ./build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Write commit_id.txt
run: echo ${{ github.sha }} > ./build/commit_id.txt
- name: Upload files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: 'build'
path: ./build
Expand Down

0 comments on commit 794bfeb

Please sign in to comment.