Skip to content

Commit d6632d4

Browse files
committed
chore: Update actions/checkout to v4
1 parent e8f2303 commit d6632d4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Diff for: .github/workflows/publish-master.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ jobs:
178178
runs-on: ubuntu-latest
179179
needs: deploy # Run after deploy so that we can get the docker image for publishing
180180
steps:
181-
- uses: actions/checkout@v2
181+
- uses: actions/checkout@v4
182182
with:
183183
fetch-depth: '0'
184184
- uses: actions/setup-python@v3

Diff for: .github/workflows/test-pr.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Are version numbers incremented
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2.2.0
13+
- uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0 # Required due to get git tag list due to the way Git works
1616
- uses: actions/setup-python@v3
@@ -23,7 +23,7 @@ jobs:
2323
name: Lint GH Actions workflows
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v2.2.0
26+
- uses: actions/checkout@v4
2727
- uses: reviewdog/action-actionlint@v1
2828
plan-terraform: # https://learn.hashicorp.com/tutorials/terraform/github-actions?in=terraform/automation
2929
name: Run Terraform Validate and Plan
@@ -122,7 +122,7 @@ jobs:
122122
runs-on: ubuntu-latest
123123
needs: plan-terraform # Needs kubeconfig from terraform
124124
steps:
125-
- uses: actions/checkout@v2.2.0
125+
- uses: actions/checkout@v4
126126
- uses: actions/setup-python@v3
127127
with:
128128
python-version: '3.10'
@@ -152,7 +152,7 @@ jobs:
152152
name: Build app containers
153153
runs-on: ubuntu-latest
154154
steps:
155-
- uses: actions/checkout@v2.2.0
155+
- uses: actions/checkout@v4
156156
- name: Build containers
157157
uses: redhat-actions/buildah-build@v2
158158
with:
@@ -167,7 +167,7 @@ jobs:
167167
name: Test app
168168
runs-on: ubuntu-latest
169169
steps:
170-
- uses: actions/checkout@v2.2.0
170+
- uses: actions/checkout@v4
171171
- name: Build test container
172172
uses: redhat-actions/buildah-build@v2
173173
with:
@@ -188,7 +188,7 @@ jobs:
188188
POSTGRES_DB: tmeit_backend
189189
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
190190
steps:
191-
- uses: actions/checkout@v2.2.0
191+
- uses: actions/checkout@v4
192192
- name: Build tester container
193193
run: |
194194
docker build . -f containerfiles/create-test-db.Containerfile -t create-test-db

0 commit comments

Comments
 (0)