Skip to content

Commit

Permalink
update github workflow versions for node v20
Browse files Browse the repository at this point in the history
correcting warnings in github:
https://github.com/GoogleCloudPlatform/gcpdiag/actions/runs/8193196244

Change-Id: I0d152a78aa18a245b647f17f3b5711799a844fc0
GitOrigin-RevId: ae066e4
  • Loading branch information
ropeck authored and copybara-github committed Mar 12, 2024
1 parent 774a5ce commit b0581e1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/code-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
id: setup-python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9

- name: Set up Terraform
uses: hashicorp/setup-terraform@3d8debd658c92063839bc97da5c2427100420dec
uses: hashicorp/setup-terraform@v3
# v1.3.2
with:
terraform_version: 1.0.6
Expand All @@ -29,7 +29,7 @@ jobs:

- name: Restore pipenv cache
id: cache-pipenv
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ./.venv
key: codeanaysis-${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-pipenv-${{ hashFiles('Pipfile.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gke-eol.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0 # Ensure all history is fetched for accurate diff

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
id: setup-python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9

Expand All @@ -23,7 +23,7 @@ jobs:

- name: Restore pipenv cache
id: cache-pipenv
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ./.venv
key: test-${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-pipenv-${{ hashFiles('Pipfile.lock') }}
Expand Down

0 comments on commit b0581e1

Please # to comment.