Skip to content
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/golang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
token: ${{ steps.generate-token.outputs.token }}
- run: git config --global "url.https://x-access-token:${{ steps.generate-token.outputs.token }}@github.com/.insteadOf" "https://github.com/"
- name: Set up Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version-file: go.mod
- name: Golines
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
run: dvc pull -v --allow-missing
- run: git config --global "url.https://x-access-token:${{ steps.generate-token.outputs.token }}@github.com/.insteadOf" "https://github.com/"
- name: Set up Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version-file: go.mod
- name: Install gcov2lcov
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
repositories: ${{ github.event.repository.name }}${{ inputs.repositories && format(',{0}', inputs.repositories) || '' }}
- uses: actions/checkout@v7.0.0
- run: git config --global url.https://x-access-token:${{ steps.generate-token.outputs.token }}@github.com/.insteadOf https://github.com/
- uses: actions/setup-go@v6
- uses: actions/setup-go@v7
with:
go-version-file: go.mod
# We Login in GHCR to retrieve owned private images used in docker-compose
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/license.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ jobs:
# golang license check set-up
- if: ${{ (!inputs.skip-dependency || inputs.skip-dependency == '') && hashFiles('go.mod') != '' }}
name: Set up Go (Go project)
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version-file: go.mod
# javascript license check set-up
- if: ${{ (!inputs.skip-dependency || inputs.skip-dependency == '') && hashFiles('package.json') != '' }}
name: Set up Go (non-Go project)
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: ">=1.20.0"
# golang & javascript license check
Expand Down
Loading