Skip to content

Commit

Permalink
chore: update actions/checkout to v4 on all ci/cd (#880)
Browse files Browse the repository at this point in the history
* remove httpsredirection

* chore: update actions/checkout to v4
  • Loading branch information
Jay-Madden authored Oct 26, 2024
1 parent 6054a0a commit 5b169b1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ClemBot.Api-Deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
runs-on: [self-hosted]
needs: ['build-push-clembot-api']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Copy Secrets
run: |
cp ~/ClemBot.Api_env.env ./ClemBot.Api/ClemBot.Api_env.env
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ClemBot.Api-Integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
shell: bash
working-directory: ClemBot.Api
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Add dotnet-format problem matcher
uses: xt0rted/dotnet-format-problem-matcher@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ClemBot.Bot-Deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
runs-on: [self-hosted]
needs: ['build-push-clembot-bot']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Copy Secrets
run: |
cp ~/ClemBot.Api_env.env ./ClemBot.Api/ClemBot.Api_env.env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ClemBot.Bot-Integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
shell: bash
working-directory: ClemBot.Bot
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python 3.10
uses: actions/setup-python@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ClemBot.Site-Deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
runs-on: [self-hosted]
needs: ['build-push-clembot-site']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Copy Secrets
run: |
cp ~/ClemBot.Api_env.env ./ClemBot.Api/ClemBot.Api_env.env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down

0 comments on commit 5b169b1

Please sign in to comment.