diff --git a/.github/workflows/create-draft-release.yml b/.github/workflows/create-draft-release.yml index 74cc47aa..4e897f39 100644 --- a/.github/workflows/create-draft-release.yml +++ b/.github/workflows/create-draft-release.yml @@ -43,10 +43,9 @@ jobs: - name: Setup Go uses: actions/setup-go@v3 with: - go-version: 1.20.x + go-version: 'stable' - name: Checkout uses: actions/checkout@v3 - - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true - name: Run Integration Tests env: TMPDIR: "${{ runner.temp }}" @@ -59,7 +58,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true + with: + fetch-tags: true - name: Reset Draft Release id: reset uses: paketo-buildpacks/github-config/actions/release/reset-draft@main diff --git a/.github/workflows/create-release-issue.yml b/.github/workflows/create-release-issue.yml index d06b0f96..6b058811 100644 --- a/.github/workflows/create-release-issue.yml +++ b/.github/workflows/create-release-issue.yml @@ -2,7 +2,7 @@ name: Create reminder issue for buildpack releases on: schedule: - - cron: '0 3 * * MON ' + - cron: '54 3 * * MON' # every Monday at 3:54am UTC workflow_dispatch: {} jobs: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 130481fa..d1008181 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v3 with: - go-version: 1.20.x + go-version: 'stable' - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index 482fed2b..8d861459 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -40,13 +40,11 @@ jobs: - name: Setup Go uses: actions/setup-go@v3 with: - go-version: 1.20.x + go-version: 'stable' - name: Checkout uses: actions/checkout@v3 - - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true - - name: Run Integration Tests env: TMPDIR: "${{ runner.temp }}" diff --git a/.github/workflows/update-buildpack-toml.yml b/.github/workflows/update-buildpack-toml.yml index 32af4097..cb4abfee 100644 --- a/.github/workflows/update-buildpack-toml.yml +++ b/.github/workflows/update-buildpack-toml.yml @@ -2,7 +2,7 @@ name: Update buildpack.toml on: schedule: - - cron: '30 */6 * * *' + - cron: '1 6 * * *' # daily at 06:01 UTC workflow_dispatch: {} concurrency: buildpack_update diff --git a/.github/workflows/update-github-config.yml b/.github/workflows/update-github-config.yml index 55857763..d4c6a3d5 100644 --- a/.github/workflows/update-github-config.yml +++ b/.github/workflows/update-github-config.yml @@ -2,7 +2,7 @@ name: Update shared github-config on: schedule: - - cron: '30 2 * * *' + - cron: '20 17 * * *' # daily at 17:20 UTC workflow_dispatch: {} concurrency: github_config_update diff --git a/scripts/.util/tools.json b/scripts/.util/tools.json index 138c5c77..ae1f7dbd 100644 --- a/scripts/.util/tools.json +++ b/scripts/.util/tools.json @@ -1,4 +1,4 @@ { - "jam": "v2.6.0", - "pack": "v0.31.0" + "jam": "v2.7.0", + "pack": "v0.32.0" }