Skip to content

Commit

Permalink
Merge pull request #79 from zooniverse/action-updates-apr24
Browse files Browse the repository at this point in the history
Update shared action versions for April 2024
  • Loading branch information
zwolf authored Apr 26, 2024
2 parents e71734a + f0e9586 commit 5ed117e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 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@v4.1.1
uses: actions/checkout@v4
with:
repository: zooniverse/${{ inputs.repo_name }}

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

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

- 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@v5.1.0
uses: docker/build-push-action@v5
with:
context: .
file: ${{ inputs.file }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/db_migration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4

- uses: azure/login@v1
- uses: azure/login@v2
with:
creds: ${{ secrets.creds }}

- uses: azure/aks-set-context@v3
- uses: azure/aks-set-context@v4
with:
resource-group: kubernetes
cluster-name: microservices
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,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4

- name: Login to GitHub Container Registry
uses: docker/[email protected]
Expand All @@ -48,7 +48,7 @@ jobs:
with:
creds: ${{ secrets.creds }}

- uses: azure/aks-set-context@v3
- uses: azure/aks-set-context@v4
with:
resource-group: kubernetes
cluster-name: microservices
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_static.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: Upload to blob storage
id: upload
uses: azure/CLI@v1
uses: azure/CLI@v2
with:
azcliversion: 2.33.1
inlineScript: |
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@v4.1.1
- uses: actions/checkout@v4

- 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@v4.1.1
uses: actions/checkout@v4

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

- uses: azure/login@v2
with:
creds: ${{ secrets.creds }}

- uses: azure/aks-set-context@v3
- uses: azure/aks-set-context@v4
with:
resource-group: kubernetes
cluster-name: microservices
Expand Down

0 comments on commit 5ed117e

Please sign in to comment.