Skip to content

Commit

Permalink
Merge pull request #64 from zooniverse/update-docker-v4
Browse files Browse the repository at this point in the history
Update shared action versions
  • Loading branch information
zwolf authored Dec 4, 2023
2 parents 859ff18 + 38f9456 commit 7fe86b4
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_and_push_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1
with:
repository: zooniverse/${{ inputs.repo_name }}

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3.0.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3.0.0

- name: Create registry tags
id: create_tags
Expand All @@ -59,7 +59,7 @@ jobs:
run: echo ${{ inputs.commit_id }} > commit_id.txt

- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5.1.0
with:
context: .
file: ${{ inputs.file }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/db_migration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1

- uses: azure/login@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3.0.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
env:
HEAD_COMMIT: ${{ inputs.commit_id }}
steps:
- uses: actions/checkout@v3.5.2
- uses: actions/checkout@v4.1.1

- name: Node.js build
id: build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_rspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1

- name: Check for focused specs
run: ./scripts/no_focus.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1

- uses: azure/login@v1
with:
Expand Down

0 comments on commit 7fe86b4

Please sign in to comment.