Skip to content

Commit

Permalink
Fix checkout version in docker-build CI flow
Browse files Browse the repository at this point in the history
  • Loading branch information
HDegroote committed Jan 11, 2024
1 parent 28f8d81 commit 60d2d1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- run: npm test
- run: npm run example

docker: # Should run after the npm package was published
docker:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
Expand All @@ -32,9 +32,9 @@ jobs:
shell: bash
run: echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
id: extract_tag
- # Needed for buildX, which accessed cwd
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 https://github.com/actions/checkout/releases/tag/v4.1.1
-
name: Set up QEMU
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 https://github.com/docker/setup-qemu-action/releases/tag/v3.0.0
Expand Down

0 comments on commit 60d2d1a

Please sign in to comment.