Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump actions/checkout from 3 to 4 #919

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/auto-tagging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Fetch existing tags
run: git fetch --tags
- name: Generate tag
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration-deb11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
username: AWS
password: ${{ needs.aws_creds.outputs.token }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Format
run: make format
clippy:
Expand All @@ -48,7 +48,7 @@ jobs:
username: AWS
password: ${{ needs.aws_creds.outputs.token }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Lint
run: make lint
audit:
Expand All @@ -62,7 +62,7 @@ jobs:
password: ${{ needs.aws_creds.outputs.token }}
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Audit
run: |
cargo audit
Expand All @@ -77,7 +77,7 @@ jobs:
password: ${{ needs.aws_creds.outputs.token }}
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive # for tests/NeTEx
- name: Install xmllint
Expand All @@ -92,7 +92,7 @@ jobs:
- name: CleanUp
run: |
sudo chown -R $USER .
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
clean: false
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
username: AWS
password: ${{ needs.aws_creds.outputs.token }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Format
run: make format
- name: Failure Slack notif
Expand All @@ -57,7 +57,7 @@ jobs:
username: AWS
password: ${{ needs.aws_creds.outputs.token }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Lint
run: make lint
- name: Failure Slack notif
Expand All @@ -80,7 +80,7 @@ jobs:
password: ${{ needs.aws_creds.outputs.token }}
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Audit
run: |
cargo audit
Expand All @@ -104,7 +104,7 @@ jobs:
password: ${{ needs.aws_creds.outputs.token }}
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive # for tests/NeTEx
- name: Install xmllint
Expand All @@ -128,7 +128,7 @@ jobs:
- name: CleanUp
run: |
sudo chown -R $USER .
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
clean: false
Expand Down
Loading