Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update GHAs #189

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:

jobs:
docs_build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Check out source code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: gh_pages
- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
- name: Install packages and deps
run: |
npm install @antora/cli @antora/site-generator-default
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
- name: Display build environment
run: printenv

- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
name: Set up Go 1.x
with:
go-version: "1.20"

- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout frontend-operator

- name: golangci-lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
testing:
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-go@v2
- uses: actions/setup-go@v5
name: Set up golang 1.20
with:
go-version: '1.20'
- name: Check out source code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install package and dependencies
run: |
make
Expand Down
Loading