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

Bump actions/cache from 3.0.1 to 3.2.6 #38

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Cache
id: cache
uses: actions/cache@v3.0.1
uses: actions/cache@v3.2.6
with:
path: ~/.ccache
key: docker-build-${{ matrix.branch }}-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
# Qt caching
- name: Cache Qt
id: cache-qt
uses: actions/cache@v3.0.1
uses: actions/cache@v3.2.6
with:
path: ${{ env.DEPS_CACHE_DIR }}/Qt/${{ env.QT_VERSION }}
key: mac-qt-${{ env.QT_VERSION }}
Expand All @@ -81,7 +81,7 @@ jobs:
# QGIS-deps caching
- name: Cache qgis-deps
id: cache-deps
uses: actions/cache@v3.0.1
uses: actions/cache@v3.2.6
with:
path: ${{ env.DEPS_CACHE_DIR }}/QGIS/qgis-deps-${{ env.QGIS_DEPS_VERSION }}.${{ env.QGIS_DEPS_PATCH_VERSION }}
key: mac-qgis-deps-${{ env.QGIS_DEPS_VERSION }}.${{ env.QGIS_DEPS_PATCH_VERSION }}
Expand Down
4 changes: 4 additions & 0 deletions src/core/qgsowsconnection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ QgsDataSourceUri QgsOwsConnection::uri() const

QgsDataSourceUri &QgsOwsConnection::addWmsWcsConnectionSettings( QgsDataSourceUri &uri, const QString &settingsKey )
{
Q_NOWARN_DEPRECATED_PUSH
addCommonConnectionSettings( uri, settingsKey );
Q_NOWARN_DEPRECATED_POP

const QgsSettings settings;
const QString referer = settings.value( settingsKey + "/referer" ).toString();
Expand Down Expand Up @@ -170,7 +172,9 @@ QgsDataSourceUri &QgsOwsConnection::addWmsWcsConnectionSettings( QgsDataSourceUr

QgsDataSourceUri &QgsOwsConnection::addWfsConnectionSettings( QgsDataSourceUri &uri, const QString &settingsKey )
{
Q_NOWARN_DEPRECATED_PUSH
addCommonConnectionSettings( uri, settingsKey );
Q_NOWARN_DEPRECATED_POP

const QgsSettings settings;
const QString version = settings.value( settingsKey + "/version" ).toString();
Expand Down