mirror of
https://github.com/terraform-aws-modules/terraform-aws-rds-proxy.git
synced 2025-12-17 00:11:11 +00:00
fix: Update CI workflow versions to latest
This commit is contained in:
parent
55193f2e7c
commit
cd1895f3c0
5 changed files with 27 additions and 10 deletions
13
.github/workflows/pre-commit.yml
vendored
13
.github/workflows/pre-commit.yml
vendored
|
|
@ -50,13 +50,12 @@ jobs:
|
||||||
BEFORE=$(getAvailableSpace)
|
BEFORE=$(getAvailableSpace)
|
||||||
|
|
||||||
ln -s /opt/hostedtoolcache/SUPERCILEX/x86_64-unknown-linux-gnu-rmz/latest/linux-x64/rmz /usr/local/bin/rmz
|
ln -s /opt/hostedtoolcache/SUPERCILEX/x86_64-unknown-linux-gnu-rmz/latest/linux-x64/rmz /usr/local/bin/rmz
|
||||||
sudo rmz -f /usr/share/dotnet &
|
|
||||||
sudo rmz -f /usr/local/.ghcup &
|
|
||||||
rmz -f /opt/hostedtoolcache/CodeQL &
|
rmz -f /opt/hostedtoolcache/CodeQL &
|
||||||
rmz -f /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk &
|
rmz -f /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk &
|
||||||
rmz -f /opt/hostedtoolcache/PyPy &
|
rmz -f /opt/hostedtoolcache/PyPy &
|
||||||
rmz -f /opt/hostedtoolcache/Ruby &
|
rmz -f /opt/hostedtoolcache/Ruby &
|
||||||
rmz -f /opt/hostedtoolcache/go &
|
rmz -f /opt/hostedtoolcache/go &
|
||||||
|
|
||||||
wait
|
wait
|
||||||
|
|
||||||
AFTER=$(getAvailableSpace)
|
AFTER=$(getAvailableSpace)
|
||||||
|
|
@ -113,13 +112,19 @@ jobs:
|
||||||
BEFORE=$(getAvailableSpace)
|
BEFORE=$(getAvailableSpace)
|
||||||
|
|
||||||
ln -s /opt/hostedtoolcache/SUPERCILEX/x86_64-unknown-linux-gnu-rmz/latest/linux-x64/rmz /usr/local/bin/rmz
|
ln -s /opt/hostedtoolcache/SUPERCILEX/x86_64-unknown-linux-gnu-rmz/latest/linux-x64/rmz /usr/local/bin/rmz
|
||||||
sudo rmz -f /usr/share/dotnet &
|
|
||||||
sudo rmz -f /usr/local/.ghcup &
|
|
||||||
rmz -f /opt/hostedtoolcache/CodeQL &
|
rmz -f /opt/hostedtoolcache/CodeQL &
|
||||||
rmz -f /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk &
|
rmz -f /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk &
|
||||||
rmz -f /opt/hostedtoolcache/PyPy &
|
rmz -f /opt/hostedtoolcache/PyPy &
|
||||||
rmz -f /opt/hostedtoolcache/Ruby &
|
rmz -f /opt/hostedtoolcache/Ruby &
|
||||||
rmz -f /opt/hostedtoolcache/go &
|
rmz -f /opt/hostedtoolcache/go &
|
||||||
|
|
||||||
|
if ${{ github.repository }} == 'terraform-aws-modules/terraform-aws-security-group';
|
||||||
|
then
|
||||||
|
sudo rmz -f /usr/local/lib/android &
|
||||||
|
sudo rmz -f /usr/share/dotnet &
|
||||||
|
sudo rmz -f /usr/local/.ghcup &
|
||||||
|
fi
|
||||||
|
|
||||||
wait
|
wait
|
||||||
|
|
||||||
AFTER=$(getAvailableSpace)
|
AFTER=$(getAvailableSpace)
|
||||||
|
|
|
||||||
17
.github/workflows/release.yml
vendored
17
.github/workflows/release.yml
vendored
|
|
@ -25,13 +25,22 @@ jobs:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Set correct Node.js version
|
||||||
|
uses: actions/setup-node@v6
|
||||||
|
with:
|
||||||
|
node-version: 24
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
npm install \
|
||||||
|
@semantic-release/changelog@6.0.3 \
|
||||||
|
@semantic-release/git@10.0.1 \
|
||||||
|
conventional-changelog-conventionalcommits@9.1.0
|
||||||
|
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: cycjimmy/semantic-release-action@v5
|
uses: cycjimmy/semantic-release-action@v5
|
||||||
with:
|
with:
|
||||||
semantic_version: 25.0.0
|
semantic_version: 25.0.0
|
||||||
extra_plugins: |
|
working_directory: docs/
|
||||||
@semantic-release/changelog@6.0.3
|
|
||||||
@semantic-release/git@10.0.1
|
|
||||||
conventional-changelog-conventionalcommits@7.1.1
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
|
||||||
|
|
|
||||||
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -28,9 +28,12 @@ override.tf.json
|
||||||
.terraformrc
|
.terraformrc
|
||||||
terraform.rc
|
terraform.rc
|
||||||
|
|
||||||
# Zip archive
|
# Lambda build artifacts
|
||||||
|
builds/
|
||||||
|
__pycache__/
|
||||||
*.zip
|
*.zip
|
||||||
builds
|
.tox
|
||||||
|
|
||||||
|
# Local editors/macos files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea
|
.idea
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue