Skip to content

Commit

Permalink
Merge pull request #142 from davemfish/bugfix/ACTIONS-updates
Browse files Browse the repository at this point in the history
Bugfix/actions updates
  • Loading branch information
emilyanndavis authored Sep 13, 2024
2 parents cd6fbfd + ce8170a commit 8bf08eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
shell: bash -l {0}

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- name: Set up python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: "3.10"

Expand Down Expand Up @@ -46,13 +46,13 @@ jobs:

- name: Authenticate GCP
if: github.event_name != 'pull_request'
uses: google-github-actions/auth@v0
uses: google-github-actions/auth@v2
with:
credentials_json: ${{ secrets.GCP_SERVICE_ACC_KEY }}

- name: Set up GCP
if: github.event_name != 'pull_request'
uses: google-github-actions/setup-gcloud@v0
uses: google-github-actions/setup-gcloud@v2

- name: Upload to release bucket
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/main' }}
Expand All @@ -76,7 +76,7 @@ jobs:
gsutil -m setmeta -r -h "Cache-control:no-store" $BUCKET
- name: Save UG artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: InVEST User's Guide
path: build/html
4 changes: 2 additions & 2 deletions .github/workflows/match-invest-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
name: Compare tags with InVEST
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
# Fetch all revisions across all branches
fetch-depth: 0
- run: git fetch origin +refs/tags/*:refs/tags/*

- name: Check out InVEST
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: natcap/invest
path: invest-src
Expand Down

0 comments on commit 8bf08eb

Please sign in to comment.