Skip to content

Commit 6b818aa

Browse files
authored
Merge pull request #3039 from metacpan/dependabot/github_actions/actions/checkout-4
Bump actions/checkout from 3 to 4
2 parents deb07cd + b3bbb8f commit 6b818aa

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build-deployment-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
name: Docker Push
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Log in to Docker Hub
1616
uses: docker/login-action@v3
1717
with:

.github/workflows/build-production-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
name: Docker Push
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Log in to Docker Hub
1515
uses: docker/login-action@v3
1616
with:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
# We must fetch at least the immediate parents so that if this is
2121
# a pull request then we can checkout the head.

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-22.04
1515
name: Docker
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: docker build
1919
run: docker build . --target test -t metacpan/metacpan-web:latest
2020
- name: run Perl tests
@@ -37,7 +37,7 @@ jobs:
3737
env:
3838
DEVEL_COVER_OPTIONS: "-ignore,^local/"
3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141
- uses: actions/setup-node@v4
4242
with:
4343
node-version: "18"

.github/workflows/update-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: haarg/setup-git-user@v1
1919
with:
2020
jwt: ${{ steps.auth-token.outputs.jwt }}
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
with:
2323
token: ${{ steps.auth-token.outputs.access-token }}
2424
- name: Set up installation local::lib

0 commit comments

Comments
 (0)