Skip to content

Commit

Permalink
Change: Update actions/checkout v3 to v4
Browse files Browse the repository at this point in the history
Avoid the `Node.js 16 actions are deprecated` warning.
  • Loading branch information
bjoernricks committed Jan 26, 2024
1 parent 0317ae9 commit e7ad350
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion check-version/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ branding:
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ inputs.python-version }} and pontos
uses: greenbone/actions/setup-pontos@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion checkout/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ branding:
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: ${{ inputs.repository }}
ref: ${{ inputs.ref }}
Expand Down
2 changes: 1 addition & 1 deletion dependency-review/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
using: "composite"
steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Dependency Review"
uses: actions/dependency-review-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion doc-coverage-clang/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ runs:
using: "composite"
steps:
- name: Checkout the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install coverxygen and codecov
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion helm-build-push/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build and push helm chart
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build and push chart
uses: greenbone/actions/helm-build-push@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion helm-version-upgrade/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: run helm-version-upgrade
uses: greenbone/actions/helm-version-upgrade@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion install-node/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
steps:
- run: echo "Checkout Repository"
shell: bash
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ inputs.version }}
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion is-latest-tag/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# the full history is required for is-latest-tag
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: greenbone/actions/is-latest-tag@v3
Expand Down
2 changes: 1 addition & 1 deletion lint-golang/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ branding:
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ${{ inputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion pypi-upload/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
using: "composite"
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion sbom-upload/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ branding:
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ inputs.token }}
- name: Generate SBOM
Expand Down
2 changes: 1 addition & 1 deletion sign-release-files/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ runs:
shell: bash
- name: Checkout repository
if: steps.checkout.outputs.exists != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python and pontos
uses: greenbone/actions/setup-pontos@v3
with:
Expand Down

0 comments on commit e7ad350

Please sign in to comment.