From ca38533e5cdbcfff8b4df626e59e7f7e26c31c08 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Sat, 6 Jan 2024 21:31:10 +0000 Subject: [PATCH 1/2] chore(deps): update github actions --- .github/workflows/auto-label.yml | 2 +- .github/workflows/release-please.yml | 2 +- .github/workflows/style-python.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-label.yml b/.github/workflows/auto-label.yml index 99c074c96..862a760a0 100644 --- a/.github/workflows/auto-label.yml +++ b/.github/workflows/auto-label.yml @@ -37,6 +37,6 @@ jobs: contents: read pull-requests: write steps: - - uses: actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594 # v4 + - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index af4fe0a36..3169bb2e5 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -7,7 +7,7 @@ jobs: release-please: runs-on: ubuntu-latest steps: - - uses: google-github-actions/release-please-action@db8f2c60ee802b3748b512940dde88eabd7b7e01 # v3 + - uses: google-github-actions/release-please-action@cc61a07e2da466bebbc19b3a7dd01d6aecb20d1e # v4 with: token: ${{ secrets.GITHUB_TOKEN }} release-type: simple diff --git a/.github/workflows/style-python.yml b/.github/workflows/style-python.yml index 649f3e6bb..5a21086bb 100644 --- a/.github/workflows/style-python.yml +++ b/.github/workflows/style-python.yml @@ -38,7 +38,7 @@ jobs: ref: ${{github.event.pull_request.head.ref}} repository: ${{github.event.pull_request.head.repo.full_name}} - name: Set up Python 3.9 - uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4 + uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5 with: python-version: 3.9 - name: Install Black From f67d651005443ae029e0d4d3c3fb7d68c2fd4a48 Mon Sep 17 00:00:00 2001 From: Adam Ross Date: Thu, 25 Jan 2024 15:54:56 -0800 Subject: [PATCH 2/2] chore: migrate release-please to manifest config --- .github/workflows/release-please.yml | 3 --- .release-please-manifest.json | 3 +++ release-please-config.json | 9 +++++++++ 3 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 .release-please-manifest.json create mode 100644 release-please-config.json diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 3169bb2e5..4da091831 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -10,6 +10,3 @@ jobs: - uses: google-github-actions/release-please-action@cc61a07e2da466bebbc19b3a7dd01d6aecb20d1e # v4 with: token: ${{ secrets.GITHUB_TOKEN }} - release-type: simple - package-name: emblem - changelog-type: github diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 000000000..ea87acc66 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.6.0" +} \ No newline at end of file diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 000000000..d3b7a9866 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,9 @@ +{ + "release-type": "simple", + "changelog-notes-type": "github", + "packages": { + ".": { + "package-name": "emblem" + } + } +}