From 1386b5b1b65083209dcfb5a26cf669431f79e31e Mon Sep 17 00:00:00 2001 From: Daniel Mikusa Date: Thu, 7 Jul 2022 09:23:14 -0400 Subject: [PATCH] Bump versions for pack, crane and mheap/github-action-required-labels Signed-off-by: Daniel Mikusa --- .github/workflows/minimal-labels.yml | 4 ++-- .github/workflows/tests.yml | 2 +- octo/labels.go | 4 ++-- octo/octo.go | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/minimal-labels.yml b/.github/workflows/minimal-labels.yml index 1bb1fd65..8f4aab50 100644 --- a/.github/workflows/minimal-labels.yml +++ b/.github/workflows/minimal-labels.yml @@ -12,7 +12,7 @@ jobs: runs-on: - ubuntu-latest steps: - - uses: mheap/github-action-required-labels@v1 + - uses: mheap/github-action-required-labels@v2 with: count: 1 labels: semver:major, semver:minor, semver:patch @@ -22,7 +22,7 @@ jobs: runs-on: - ubuntu-latest steps: - - uses: mheap/github-action-required-labels@v1 + - uses: mheap/github-action-required-labels@v2 with: count: 1 labels: type:bug, type:dependency-upgrade, type:documentation, type:enhancement, type:question, type:task diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5f63aa0a..6277737b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -44,7 +44,7 @@ jobs: "https://github.com/buildpacks/pack/releases/download/v${PACK_VERSION}/pack-v${PACK_VERSION}-linux.tgz" \ | tar -C "${HOME}"/bin -xz pack env: - PACK_VERSION: 0.24.0 + PACK_VERSION: 0.27.0 - name: Enable pack Experimental if: ${{ false }} run: | diff --git a/octo/labels.go b/octo/labels.go index e3d85786..38dc884b 100644 --- a/octo/labels.go +++ b/octo/labels.go @@ -131,7 +131,7 @@ func ContributeLabels(descriptor Descriptor) ([]Contribution, error) { RunsOn: []actions.VirtualEnvironment{actions.UbuntuLatest}, Steps: []actions.Step{ { - Uses: "mheap/github-action-required-labels@v1", + Uses: "mheap/github-action-required-labels@v2", With: map[string]interface{}{ "mode": "exactly", "count": 1, @@ -149,7 +149,7 @@ func ContributeLabels(descriptor Descriptor) ([]Contribution, error) { RunsOn: []actions.VirtualEnvironment{actions.UbuntuLatest}, Steps: []actions.Step{ { - Uses: "mheap/github-action-required-labels@v1", + Uses: "mheap/github-action-required-labels@v2", With: map[string]interface{}{ "mode": "exactly", "count": 1, diff --git a/octo/octo.go b/octo/octo.go index 055dbfd1..cbe13945 100644 --- a/octo/octo.go +++ b/octo/octo.go @@ -29,9 +29,9 @@ import ( //go:generate statik -src . -include *.sh const ( - CraneVersion = "0.8.0" + CraneVersion = "0.10.0" GoVersion = "1.17" - PackVersion = "0.24.0" + PackVersion = "0.27.0" RichGoVersion = "0.3.10" YJVersion = "5.0.0" )