Skip to content

Commit

Permalink
chore: disable golang proxy for phrase-go (#698)
Browse files Browse the repository at this point in the history
  • Loading branch information
theSoenke authored Oct 2, 2024
1 parent 768c308 commit 55e7a9a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ jobs:
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19.6
go-version: 1.21.9
- name: Build and Deploy 🚀
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOPRIVATE: github.com/phrase/phrase-go
run: |
npm install
npm run generate.go
Expand Down Expand Up @@ -50,11 +51,12 @@ jobs:
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19.6
go-version: 1.21.9
- name: Build and Deploy 🚀
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOPRIVATE: github.com/phrase/phrase-go
run: |
npm install
npm run generate.cli
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19.6
go-version: 1.21.9
- name: Build
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
Expand All @@ -53,7 +53,7 @@ jobs:
# - name: Set up Go
# uses: actions/setup-go@v2
# with:
# go-version: 1.19.6
# go-version: 1.21.9
# - name: Build
# env:
# API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.19.6'
go-version: '1.21.9'
- name: Generate CLI
env:
GOPRIVATE: github.com/phrase/phrase-go
run: |
npm install
npm run generate.cli
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.19.6'
go-version: '1.21.9'
- name: Run Tests
run: |
npm install
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
golang 1.19.1
golang 1.21.9
nodejs 20.11.0
maven 3.9.1

0 comments on commit 55e7a9a

Please sign in to comment.