Skip to content
Open
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Use Node.js 20.10.0'
uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"steps": [
{
"name": "Checkout repository",
"uses": "actions/checkout@v4"
"uses": "actions/checkout@v6"
},
{
"name": "Initialize CodeQL",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/link-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

- name: Link Checker
uses: lycheeverse/lychee-action@f613c4a64e50d792e0b31ec34bbcbba12263c6a6 # v2.3.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'runs-on': 'ubuntu-latest',
'steps':
[
{ 'uses': 'actions/checkout@v4' },
{ 'uses': 'actions/checkout@v6' },
{
'name': 'Use Node.js 20.10.0',
'uses': 'actions/setup-node@v4',
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly_build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix: ${{ steps.vars.outputs.matrix }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up variables
id: vars
run: echo "matrix=$(jq -c . matrix.json)" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'strategy': { 'matrix': { 'node-version': ['20.10.0'] } },
'steps':
[
{ 'uses': 'actions/checkout@v4' },
{ 'uses': 'actions/checkout@v6' },
{
'name': 'Use Node.js ${{ matrix.node-version }}',
'uses': 'actions/setup-node@v4',
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
version: ${{ steps.vars.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: congatudo/Congatudo
fetch-depth: 0
Expand All @@ -28,7 +28,7 @@ jobs:
matrix: ${{ steps.vars.outputs.matrix }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up variables
id: vars
run: echo "matrix=$(jq -c . matrix.json)" >> $GITHUB_OUTPUT
Expand Down
Loading