Skip to content

Commit

Permalink
Update checkout action version
Browse files Browse the repository at this point in the history
  • Loading branch information
iainelder committed Dec 8, 2024
1 parent 4859707 commit 42c8d45
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nonroot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Debug directory structure
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:

- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Prepare Docker
shell: bash # Avoids "Illegal option -o pipefail"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Hello from workflow
run: echo "Hello from Workflow"
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
shell: bash -c "BASH_ENV=~/.bashrc bash {0}"
steps:
- name: Checkout bashrc
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up ~/.bashrc
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
bats-version: 1.2.1

- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4

# https://www.yegor256.com/2014/08/29/docker-non-root.html
- name: Add non-root user
Expand Down

0 comments on commit 42c8d45

Please sign in to comment.