Skip to content

Commit

Permalink
Upgrade the version of a lot of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
evamaxfield committed Dec 5, 2023
1 parent 660495d commit c91dee5
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v1
with:
python-version: '3.11'
Expand All @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v1
with:
node-version: '16.x'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v1
with:
python-version: '3.11'
Expand All @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v1
with:
node-version: '16.x'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ on:
jobs:
deploy-infra:
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'

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

# Install OS Deps
- uses: actions/setup-python@v1
Expand All @@ -35,7 +38,7 @@ jobs:
pip install -r infra/requirements.txt
# Setup gcloud
- uses: 'google-github-actions/auth@v0'
- uses: 'google-github-actions/auth@v2'
with:
credentials_json: {% raw %}${{ secrets.GOOGLE_CREDENTIALS }}{% endraw %}
- name: Set up Cloud SDK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

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

# Setup Node
- name: Setup Node
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
deploy-runner-on-gcp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup CML
uses: iterative/setup-cml@v1
- name: Create Runner
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
options: --gpus all

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.11'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
# Setup Runner
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v1
with:
python-version: '3.11'
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

steps:
# Setup Runner
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v1
with:
python-version: '3.11'
Expand All @@ -106,7 +106,7 @@ jobs:

steps:
# Setup Runner
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v1
with:
python-version: '3.11'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
deploy-runner-on-gcp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup CML
uses: iterative/setup-cml@v1
- name: Create Runner
Expand All @@ -42,7 +42,7 @@ jobs:
options: --gpus all

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.11'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v1
with:
python-version: '3.11'
Expand Down

0 comments on commit c91dee5

Please sign in to comment.