Skip to content

Commit

Permalink
Merge pull request #70 from restechnica/fix/66-outdated-github-actions
Browse files Browse the repository at this point in the history
fix/66-outdated-github-actions
  • Loading branch information
shiouen authored Jan 17, 2024
2 parents 63c4468 + 697944a commit cbf7e0d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,21 @@ on:
branches-ignore: [ main ]

env:
GO_VERSION: 1.21
NUSHELL_VERSION: 0.88.0

jobs:
build:
name: pipeline
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: set-up-go
uses: actions/setup-go@v2
- name: set up go
uses: actions/setup-go@v5
with:
go-version: 1.20.5
cache-dependency-path: go.sum
go-version: ${{ env.GO_VERSION }}

- name: set up nushell
uses: hustcer/setup-nu@v3.8
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,21 @@ on:
branches: [ main ]

env:
GO_VERSION: 1.21
NUSHELL_VERSION: 0.88.0

jobs:
build:
name: pipeline
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: set-up-go
uses: actions/setup-go@v2
- name: set up go
uses: actions/setup-go@v5
with:
go-version: 1.20.5
cache-dependency-path: go.sum
go-version: ${{ env.GO_VERSION }}

- name: set up nushell
uses: hustcer/setup-nu@v3.8
Expand Down

0 comments on commit cbf7e0d

Please sign in to comment.