chore: update GitHub Actions workflows for auto-tagging and release processes

- Updated permissions in both auto-tag.yml and release.yml to include write access for issues and pull requests.
- Changed the checkout action version from v4 to v3 in both workflows for consistency.
- Updated Go setup action version from v5 to v4 and specified the Go version as "1.21".
- Adjusted GPG import action version from v6 to v5.
- Updated GoReleaser action version from v5 to v4 and specified the release version as v1.21.2.
- Standardized string quotes in YAML files for consistency.
This commit is contained in:
煎饼果子卷鲨鱼辣椒 2024-12-30 18:03:05 +08:00
parent 778f48e57a
commit fa53723283
2 changed files with 22 additions and 13 deletions

View File

@ -6,22 +6,24 @@ on:
- master - master
- main - main
paths-ignore: paths-ignore:
- '**.md' - "**.md"
- 'LICENSE' - "LICENSE"
- '.gitignore' - ".gitignore"
jobs: jobs:
auto-tag: auto-tag:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
contents: write contents: write
issues: write
pull-requests: write
outputs: outputs:
new_tag: ${{ steps.get_latest_tag.outputs.version }} new_tag: ${{ steps.get_latest_tag.outputs.version }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Get latest tag - name: Get latest tag
id: get_latest_tag id: get_latest_tag
run: | run: |
@ -50,4 +52,9 @@ jobs:
release: release:
needs: auto-tag needs: auto-tag
uses: ./.github/workflows/release.yml uses: ./.github/workflows/release.yml
secrets: inherit permissions:
contents: write
packages: write
issues: write
pull-requests: write
secrets: inherit

View File

@ -4,18 +4,20 @@ on:
workflow_call: workflow_call:
push: push:
tags: tags:
- 'v*' - "v*"
permissions: permissions:
contents: write contents: write
packages: write packages: write
issues: write
pull-requests: write
jobs: jobs:
goreleaser: goreleaser:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 0
lfs: true lfs: true
@ -29,24 +31,24 @@ jobs:
ls -R ls -R
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v4
with: with:
go-version: '1.21' go-version: "1.21"
cache: true cache: true
- name: Import GPG key - name: Import GPG key
id: import_gpg id: import_gpg
uses: crazy-max/ghaction-import-gpg@v6 uses: crazy-max/ghaction-import-gpg@v5
with: with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }} passphrase: ${{ secrets.PASSPHRASE }}
if: ${{ env.GPG_PRIVATE_KEY != '' }} if: ${{ env.GPG_PRIVATE_KEY != '' }}
- name: Run GoReleaser - name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5 uses: goreleaser/goreleaser-action@v4
with: with:
distribution: goreleaser distribution: goreleaser
version: latest version: v1.21.2
args: release --clean args: release --clean
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}