Skip to content

Commit

Permalink
ci: fix alpine version checker & remove v7 branch PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
cwaldren-ld committed Oct 21, 2024
1 parent fd7ab1c commit 827830d
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/check-alpine-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,15 @@ jobs:
contents: write
pull-requests: write
runs-on: ubuntu-latest
strategy:
matrix:
branch: ["v7", "v8"]
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}
ref: v8

- name: Get current Alpine version
id: alpine-current
run: |
version=$(sed -n 's/^FROM \(.*\)/\1/p' Dockerfile.goreleaser)
version=$(sed -n 's/^FROM alpine:\(.*\)/\1/p' Dockerfile.goreleaser)
echo "version=$version" >> $GITHUB_OUTPUT
- name: Get latest Alpine tag semantic version, not 'latest'
id: alpine-latest
Expand Down

0 comments on commit 827830d

Please sign in to comment.