Skip to content

Commit

Permalink
Merge branch 'v2' into dependabot/go_modules/v2/github.com/opencontai…
Browse files Browse the repository at this point in the history
…ners/image-spec-1.1.0
  • Loading branch information
fujiwara authored Aug 6, 2024
2 parents 001dd56 + 22cb1b2 commit 52c3288
Show file tree
Hide file tree
Showing 56 changed files with 1,496 additions and 789 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ updates:
groups:
aws-sdk-go-v2:
patterns:
- "github.com/aws/aws-sdk-go-v2/*"
- "github.com/aws/aws-sdk-go-v2*"
- package-ecosystem: github-actions
directory: "/"
schedule:
Expand Down
36 changes: 35 additions & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ on:

jobs:
install:
strategy:
matrix:
runner:
- ubuntu-latest
name: test action
runs-on: ubuntu-latest
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- uses: kayac/ecspresso@v0
Expand Down Expand Up @@ -56,3 +60,33 @@ jobs:
version: v2.0.4
- run: |
ecspresso version 2>&1 | fgrep v2.0.4
install_on_arm:
strategy:
matrix:
runner:
- buildjet-2vcpu-ubuntu-2204-arm
name: test action
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- uses: kayac/ecspresso@v2-action-testing
with:
version: latest
- run: |
ecspresso version 2>&1 | fgrep v2.
- uses: kayac/ecspresso@v2-action-testing
with:
version: v2.0.4
- run: |
ecspresso version 2>&1 | fgrep v2.0.4
- uses: kayac/ecspresso@v2-action-testing
with:
version-file: tests/.ecspresso-version
- run: |
ecspresso version 2>&1 | fgrep v2.0.0
- uses: kayac/ecspresso@v2
with:
version: v2.3.3
- run: |
ecspresso version 2>&1 | fgrep v2.3.3
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ jobs:
fi
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --rm-dist
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ env.DO_RELEASE }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
fetch-depth: 0 # it is required for the changelog to work correctly.

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --rm-dist
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ test:
go test -race ./...

packages:
goreleaser build --skip-validate --rm-dist
goreleaser build --skip-validate --clean

packages-snapshot:
goreleaser build --skip-validate --rm-dist --snapshot
goreleaser build --skip-validate --clean --snapshot

clean:
rm -f cmd/ecspresso/ecspresso
Expand Down
Loading

0 comments on commit 52c3288

Please sign in to comment.