Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update shared action versions for April 2024 #79

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading