Skip to content

Commit 2d1b186

Browse files
committed
Updating github-config
1 parent 02accfc commit 2d1b186

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/create-draft-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ jobs:
4040
builder: ${{ fromJSON(needs.builders.outputs.builders) }}
4141
fail-fast: false # don't cancel all test jobs when one fails
4242
steps:
43+
- name: Checkout
44+
uses: actions/checkout@v4
4345
- name: Setup Go
4446
uses: actions/setup-go@v5
4547
with:
46-
go-version: 'stable'
47-
- name: Checkout
48-
uses: actions/checkout@v4
48+
go-version-file: go.mod
4949
- name: Run Integration Tests
5050
env:
5151
TMPDIR: "${{ runner.temp }}"

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
name: lint
1414
runs-on: ubuntu-24.04
1515
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
1619
- name: Setup Go
1720
uses: actions/setup-go@v5
1821
with:
19-
go-version: 'stable'
20-
21-
- name: Checkout
22-
uses: actions/checkout@v4
22+
go-version-file: go.mod
2323

2424
- name: golangci-lint
2525
uses: golangci/golangci-lint-action@v3

.github/workflows/test-pull-request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
builder: ${{ fromJSON(needs.builders.outputs.builders) }}
3838
fail-fast: false # don't cancel all test jobs when one fails
3939
steps:
40+
- name: Checkout
41+
uses: actions/checkout@v4
42+
4043
- name: Setup Go
4144
uses: actions/setup-go@v5
4245
with:
43-
go-version: 'stable'
44-
45-
- name: Checkout
46-
uses: actions/checkout@v4
46+
go-version-file: go.mod
4747

4848
- name: Run Integration Tests
4949
env:

.github/workflows/update-go-mod-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
id: setup-go
2323
uses: actions/setup-go@v5
2424
with:
25-
go-version: 'stable'
25+
go-version-file: go.mod
2626
- name: Get current go toolchain version
2727
id: current-go-version
2828
uses: paketo-buildpacks/github-config/actions/update-go-mod-version@main

scripts/.util/tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"jam": "v2.13.0",
2+
"jam": "v2.14.2",
33
"pack": "v0.38.2"
44
}

0 commit comments

Comments
 (0)