Skip to content

Commit

Permalink
A0-2999: Update all actions to run on node20
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin-Radecki committed May 15, 2024
1 parent 7ad8d9d commit 3f2c813
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 16 deletions.
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
day: sunday
# UTC time
time: "06:15"
rebase-strategy: disabled
commit-message:
prefix: "A0-3952: "
groups:
all-github-actions:
patterns:
- "*"
pull-request-branch-name:
separator: "-"
reviewers:
- "Marcin-Radecki"
- "Mikolaj Gasior"

2 changes: 1 addition & 1 deletion .github/workflows/_featurenet-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
git-commit-email: ${{ secrets.AUTOCOMMIT_EMAIL }}

- name: Start featurenet Deployment
uses: bobheadxi/deployments@v1.1.0
uses: bobheadxi/deployments@v1
id: deployment
with:
step: start
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_featurenet-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
uses: actions/checkout@v4

- name: Start featurenet Deployment
uses: bobheadxi/deployments@v1.1.0
uses: bobheadxi/deployments@v1
id: deployment
with:
step: start
Expand Down
4 changes: 2 additions & 2 deletions create-branchpreview/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ runs:
fi
- name: Checkout branchpreviews repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Cardinal-Cryptography/${{ inputs.repo-branchpreviews-name }}
token: ${{ inputs.gh-ci-token }}
path: '${{ inputs.repo-branchpreviews-name }}'
ref: main

- name: Checkout branchpreview templates repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Cardinal-Cryptography/${{ inputs.repo-branchpreview-templates-name }}
token: ${{ inputs.gh-ci-token }}
Expand Down
2 changes: 1 addition & 1 deletion create-featurenet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ runs:
fi
- name: Checkout featurenet template repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Cardinal-Cryptography/${{ inputs.repo-featurenet-template-name }}
token: ${{ inputs.gh-ci-token }}
Expand Down
4 changes: 2 additions & 2 deletions delete-branchpreview/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ runs:
fi
- name: Checkout branchpreviews repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Cardinal-Cryptography/${{ inputs.repo-branchpreviews-name }}
token: ${{ inputs.gh-ci-token }}
path: '${{ inputs.repo-branchpreviews-name }}'
ref: main

- name: Checkout branchpreview templates repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Cardinal-Cryptography/${{ inputs.repo-branchpreview-templates-name }}
token: ${{ inputs.gh-ci-token }}
Expand Down
4 changes: 2 additions & 2 deletions delete-featurenet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ runs:
fi
- name: Checkout featurenet template repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Cardinal-Cryptography/${{ inputs.repo-featurenet-template-name }}
token: ${{ inputs.gh-ci-token }}
path: "${{ inputs.repo-featurenet-template-name }}"
ref: main

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
uses: aws-actions/configure-aws-credentials@v4
env:
AWS_REGION: us-east-1
with:
Expand Down
6 changes: 3 additions & 3 deletions install-rust-toolchain/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,21 @@ runs:
- name: Read channel from rust-toolchain.toml
id: toolchain-channel
uses: SebRollen/toml-action@v1.0.2
uses: SebRollen/toml-action@v1.2.0
with:
file: 'rust-toolchain.toml'
field: 'toolchain.channel'

- name: Read components from rust-toolchain.toml
id: toolchain-components
uses: SebRollen/toml-action@v1.0.2
uses: SebRollen/toml-action@v1.2.0
with:
file: 'rust-toolchain.toml'
field: 'toolchain.components'

- name: Read targets from rust-toolchain.toml
id: toolchain-targets
uses: SebRollen/toml-action@v1.0.2
uses: SebRollen/toml-action@v1.2.0
with:
file: 'rust-toolchain.toml'
field: 'toolchain.targets'
Expand Down
2 changes: 1 addition & 1 deletion slack-notification/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
using: 'composite'
steps:
- name: Get workflow conclusion
uses: technote-space/workflow-conclusion-action@v3
uses: Cardinal-Cryptography/workflow-conclusion-action@v3

- name: Export envs
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion update-featurenet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ runs:
fi
- name: Checkout featurenet template repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Cardinal-Cryptography/${{ inputs.repo-featurenet-template-name }}
token: ${{ inputs.gh-ci-token }}
Expand Down
2 changes: 1 addition & 1 deletion yaml-lint/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
using: "composite"
steps:
- name: GIT | Checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get .yamllint location
id: file-location
Expand Down
2 changes: 1 addition & 1 deletion yaml-validate/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
using: "composite"
steps:
- name: GIT | Checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: VALIDATE | Execute github-actions-validator
env:
Expand Down

0 comments on commit 3f2c813

Please sign in to comment.