Skip to content

Commit

Permalink
Merge pull request #11 from aaronhmiller/patch_third_parties
Browse files Browse the repository at this point in the history
specifying exact workflow versions per OX
  • Loading branch information
aaronhmiller authored Jan 5, 2024
2 parents a8af7b5 + 3ce9175 commit 9c6ca5c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/branch-build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v3.6.0
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v2.2.0
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v2.10.0
-
name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v2.2.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Branch build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v3.3.1
with:
file: ./app/Dockerfile
context: ./app
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@main
- uses: actions/checkout@v3.6.0
- name: Run the app
run: docker-compose up -d
- name: Test app
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-visualization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@main
uses: actions/checkout@v3.6.0
- name: Update diagram
uses: githubocto/repo-visualizer@main
uses: githubocto/repo-visualizer@0.9.1
with:
excluded_paths: "diagram.svg,app/.dockerignore,.github,.gitignore,LICENSE"
branch: diagram
12 changes: 6 additions & 6 deletions .github/workflows/tagged-build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v3.6.0
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v2.2.0
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v4.6.0
with:
images: |
${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}
Expand All @@ -31,16 +31,16 @@ jobs:
latest=auto
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v2.10.0
-
name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v2.2.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Tagged build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v3.3.1
with:
file: ./app/Dockerfile
context: ./app
Expand Down

1 comment on commit 9c6ca5c

@vercel
Copy link

@vercel vercel bot commented on 9c6ca5c Jan 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.