Skip to content

Commit

Permalink
Switch to major release tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ebronson68 committed Aug 8, 2023
1 parent 9c1a437 commit 413f9e4
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/aks-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ jobs:
azPSVersion: "latest"

- name: Login to Azure Container Registry
uses: Azure/docker-login@v1.0.1
uses: Azure/docker-login@v1
with:
login-server: ${{ secrets.registryHostName }}
username: ${{ secrets.registryUserName }}
Expand Down Expand Up @@ -318,7 +318,7 @@ jobs:
- name: Bake Helm Templates
id: bake
uses: azure/k8s-bake@v2.4
uses: azure/k8s-bake@v2
with:
renderEngine: "helm"
helmChart: ${{ inputs.chartsPath }}
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:

- name: Apply configMap if it exists
if: ${{ needs.build.outputs.configMap != null }}
uses: swdotcom/update-and-apply-kubernetes-configs@v1.2.0
uses: swdotcom/update-and-apply-kubernetes-configs@v1
with:
k8-config-file-paths: deployments/k8s/config-${{ inputs.environment }}.yaml

Expand All @@ -419,7 +419,7 @@ jobs:
}
- name: Create K8s Image Pull Secret
uses: Azure/k8s-create-secret@v4.0
uses: Azure/k8s-create-secret@v4
with:
container-registry-url: ${{ secrets.registryHostName }}
container-registry-username: ${{ secrets.registryUserName }}
Expand All @@ -428,7 +428,7 @@ jobs:

- name: Deploy to Azure Kubernetes Service
timeout-minutes: ${{ inputs.deploymentTimeout }}
uses: Azure/k8s-deploy@v4.9
uses: Azure/k8s-deploy@v4
with:
namespace: ${{ inputs.environment }}
manifests: ${{ needs.build.outputs.manifestsBundle }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependabot-automations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
# will not occur.
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v1.3.1
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

- name: Auto Approve Dependabot PRs
uses: hmarr/auto-approve-action@v2.0.0
uses: hmarr/auto-approve-action@v3.2.1
if: ${{ inputs.autoApprove && github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' }}
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mega-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
# Run the MegaLinter Github Action
- name: MegaLinter
id: ml
uses: oxsecurity/megalinter/flavors/cupcake@v6.20.1
uses: oxsecurity/megalinter/flavors/cupcake@v7
env:
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'workflow_dispatch' }}
GITHUB_TOKEN: ${{ secrets.PAT_ACTION_CI }}
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
# Run the MegaLinter Github Action
- name: MegaLinter
id: ml
uses: oxsecurity/megalinter/flavors/dotnet@v6.20.1
uses: oxsecurity/megalinter/flavors/dotnet@v7
env:
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'workflow_dispatch' }}
GITHUB_TOKEN: ${{ secrets.PAT_ACTION_CI }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/template-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
token: ${{ secrets.PAT_ACTION_CI }}

- name: actions-template-sync
uses: AndreasAugustin/actions-template-sync@v0.8.0
uses: AndreasAugustin/actions-template-sync@v1.1.0
with:
github_token: ${{ secrets.PAT_ACTION_CI }}
source_repo_path: Andrews-McMeel-Universal/.github
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wpe-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: actions/checkout@v2

- name: Deploy to WP Engine
uses: wpengine/github-action-wpe-site-deploy@v3.2.2
uses: wpengine/github-action-wpe-site-deploy@v3
with:
# Deploy vars
WPE_SSHG_KEY_PRIVATE: ${{ secrets.WPENGINE_ED25514 }}
Expand Down

0 comments on commit 413f9e4

Please sign in to comment.