Skip to content

Commit

Permalink
Update GitHub action versions
Browse files Browse the repository at this point in the history
Avoid using deprecated action versions based on Node versions prior to Node 18.

Signed-off-by: Mark S. Lewis <[email protected]>
  • Loading branch information
bestbeforetoday committed Feb 25, 2024
1 parent a708af9 commit cea2e4e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/actions/fsat-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ inputs:
default: 18.x
just-version:
description: Just Version
default: '1.13.0'
default: '1.24.0'
k9s-version:
description: k9s Version
default: v0.25.3
Expand Down Expand Up @@ -35,9 +35,9 @@ runs:
sudo chmod 755 /usr/local/bin/k9s
- name: Install just
uses: extractions/setup-just@v1
uses: taiki-e/install-action@v2
with:
just-version: ${{ inputs.just-version }}
tool: just@${{ inputs.just-version }}

- name: Install weft
shell: bash
Expand Down
5 changes: 2 additions & 3 deletions .github/actions/test-network-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ inputs.go-version }}
cache: true
cache-dependency-path: '**/go.sum'

- uses: actions/setup-node@v4
Expand All @@ -32,7 +31,7 @@ runs:
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ inputs.java-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
go:
runs-on: fabric-ubuntu-20.04
steps:
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VER }}
- uses: actions/checkout@v4
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
runs-on: fabric-ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ env.JAVA_VER }}
Expand Down

0 comments on commit cea2e4e

Please sign in to comment.