Skip to content

Commit

Permalink
Bump GitHub action versions (#10)
Browse files Browse the repository at this point in the history
The new versions use Node 16 by default instead of the now-deprecated Node 12.
https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/

Actions updated:
* actions/checkout to v3
* actions/setup-go to v3
  • Loading branch information
mrcalderon authored Nov 23, 2022
1 parent 722870f commit 45941ed
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: setup go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.15.x

- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: unit test
run: go test -v ./...
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: run action
uses: './'
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: conftest
uses: YubicoLabs/action-conftest@v2
uses: YubicoLabs/action-conftest@v3
with:
files: some_deployment.yaml another_resource.yaml
gh-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -61,9 +61,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: conftest
uses: YubicoLabs/action-conftest@v2
uses: YubicoLabs/action-conftest@v3
with:
files: some_deployment.yaml another_resource.yaml
pull-url: gcs::https://www.googleapis.com/storage/v1/bucket_name/policy
Expand All @@ -82,9 +82,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: conftest
uses: YubicoLabs/action-conftest@v2
uses: YubicoLabs/action-conftest@v3
with:
files: some_deployment.yaml another_resource.yaml
gh-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 45941ed

Please sign in to comment.